Shan
Shan

Reputation: 439

VBA Variable Array Name?

I would like to know if there a way to change array names while looping.

for example

For i= 1 to 4
    "array" & i()
Next i

array1 ,array2,array3,array4 are my 4 arrays.

Thanks

Upvotes: 0

Views: 1843

Answers (1)

SierraOscar
SierraOscar

Reputation: 17637

To quote my favourite StackOverflow answer:

Short Answer: No.
Long Answer: Noooooooooooooo.

Upvotes: 1

Related Questions