Hi
I am trying to declare an array in the following loop:
-------------------------------------------------------------------
'For k = 1 to 12
i = 1
For j = 1 To NoData Step 12
series1(i, 1) = series(j, 1)
i = i + 1
Next j
'Next k
-------------------------------------------------------------------
As you can see Series1 is an array. but I would like to declare 12 arrays using the outer k loop. So Series1, Series2, Series3.,.,.., Series12
Please advise. Any help would be much appreciated.
regards
Rohit
Bookmarks