Thread: Array question
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jim Simpson Jim Simpson is offline
external usenet poster
 
Posts: 21
Default Array question

I have an array of variables. Using a "Do" routine I want to assign a column
number to each of the variables in the array.

For example: Array(1) contains Var1 and I want to store a column number in
Var1.

If I write Array(1) = c.column, I find Array(1) contains the value of
c.column instead of Var1 containing the value of c.column.

Is there a way I can do what I want?

Thanks for help.

Jim