I'm writing my first 2 dimensional array-
I understand this for one dimension:
and also using the split function,
I like that you can do one line at a time, but for 2 dimension, I have only found this:
which does each variable individually.
I have a 9x7 table and having to do that 63 times doesn't seem like it can be right.
How do I set up 1 array with 9 lines and 7 columns, one line at a time?
Thanks
I understand this for one dimension:
Code:
MyArray = Array("Name", "Date", "Error")
I like that you can do one line at a time, but for 2 dimension, I have only found this:
Code:
MyArray(0,1) = "Name" MyArray(0,2) = "Date" MyArray(0,3) = "Error" MyArray(1,0) = "Blah" MyArray(1,2) = "Blah2" MyArray(1,3) = "Blah3"
I have a 9x7 table and having to do that 63 times doesn't seem like it can be right.
How do I set up 1 array with 9 lines and 7 columns, one line at a time?
Thanks
Comment