View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
[email protected] reinquisito2@gmail.com is offline
external usenet poster
 
Posts: 3
Default Sequential variables (no array)

Hi,
is possible in the code using a for next for assign a value to a sequential variables (no array)?

I mean, instead of this...

aa1 = 9
aa2 = 9
aa3 = 9
.......
aa100 = 9

use:

for x = 1 to 100
aa&"x" = 9 -- I do not know the correct syntax !!!
next x

No array aa(x) please.

Thanks to all
R.