U
Under Pressure
I have some data in a spreadsheet and want to do some complex things with it.
In the 'old days of GWBASIC' - before spreadsheets - I would set up the
following lines of programming:-
Dim table(40,60)
For i=1 to 40:for j=1 to 60
Read table(i,j)
next j:next i
Then I would analyse the data in the array.
I know that macros can handle the for/next loops but what are the equivalent
lines for setting up a 2 dimensional array and then getting the data from the
spreadsheet?
Any help would be appreciated.
Thanks
Under Pressure
In the 'old days of GWBASIC' - before spreadsheets - I would set up the
following lines of programming:-
Dim table(40,60)
For i=1 to 40:for j=1 to 60
Read table(i,j)
next j:next i
Then I would analyse the data in the array.
I know that macros can handle the for/next loops but what are the equivalent
lines for setting up a 2 dimensional array and then getting the data from the
spreadsheet?
Any help would be appreciated.
Thanks
Under Pressure