Hello Everyone,
I've been trying to find out if it's possible (and if it is how) to take the data in a String which is a name of another var, and save data to that other var...
Exampe:
Dim Temp as string
Dim AnotherVar as integer

Temp = "AnotherVar"
*** Lets say I want to save in AnotherVar the value "7", I don't want to write AnotherVar = 7, I want to find a way that I can do TheDataInTemp = 7
And since the Data in temp is the word "AnotherVar", it will save the value 7 in the AnotherVar variable that I defined at the begining...
Any Ideas?