Thread: Variables Name
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Edmund Edmund is offline
external usenet poster
 
Posts: 17
Default Variables Name

Why not declare an array of appropriate dimension to hold the values
instead? Then you could reference the value you needed by its index instead
of declaring 20 variables of the same type holding the same type of
information.

"Angeles" wrote in message
...
Hi I have to define 20 variables all of then have similar name for example
:

Name13
Name14
Name15
Name16

Can I do something like "Name" & nRow = Value ?

Thank you in advance.