Hi,
I'm having some difficulty getting data into arrays greater than one
dimension. I can do it if I specify every single element individually
but there has to be a faster way. I thought something like this would
work:
Dim arrVal (3,3)
arrVal(0) = Array(1, "ONE", "A")
also tried this:
arrVal(0,) = Array(1, "ONE", "A")
and of course:
arrVal(0) = (1, "ONE", "A")
The only thing that seems to work is this:
arrVal(0,0) = 1
arrVal (0,1) = "One"
arrVal (0,2) = "A"
Is there an easier way?
Thank You