C
cparsons
Is it possible to Dim variables in a loop? My objective is to Dim 10
variables with the following naming convention.
LON1Col
LON2Col
...
LON99Col
LON100Col
Using something like this.
For x = 0 To 100 - 1
Dim "LON" & (x+1) & "Col" as Integer
Next
variables with the following naming convention.
LON1Col
LON2Col
...
LON99Col
LON100Col
Using something like this.
For x = 0 To 100 - 1
Dim "LON" & (x+1) & "Col" as Integer
Next