Guest_imported
New member
- Jan 1, 1970
- 0
I'd like to use a variable within another variable. For example:
Dim test1
test1 = 57
Dim test
test = ("test" & 1)
The value of test become "Test1" instead of the value of the variable test1 (57). I'd like to use a step function to get values for test1, test2, test3....
Is there anyway to convert this string into the value of a variable?
Dim test1
test1 = 57
Dim test
test = ("test" & 1)
The value of test become "Test1" instead of the value of the variable test1 (57). I'd like to use a step function to get values for test1, test2, test3....
Is there anyway to convert this string into the value of a variable?