economistleo
Programmer
Hi, this is my first post so I apologize in advance for anything.
I've been working on this issue for more than a week now, and still haven't solved it.
What I need is to dynamically name variables, so it can be 'called' acording to string strings within the sheet. More clearly, my data structure is (two columns):
COL1 COL2
1 77.2
2 52.6
101 95.7
102 (...)
10101
10102
10103
10201
10203
(...)
(...)
1010203010202010 87.6
What I need is to create a local variable named
var_1010203010202010 = 87.6
for each one of the cells in column1 and assign to it the values in column 2 and keep it in memory. Later, I need to call these variables using the values in column1. I`ve tried to do with an array but I get the OVERFLOW error
(imagine an array with 1010203010202010 lines). Besides, it seems like a waste of memory to declare thousands of lines just to use a few. I've come up to some posts about 'concatenating variables and string as variables names' but they all had a solution within the array scope.
Thank you in advance!
Leo
I've been working on this issue for more than a week now, and still haven't solved it.
What I need is to dynamically name variables, so it can be 'called' acording to string strings within the sheet. More clearly, my data structure is (two columns):
COL1 COL2
1 77.2
2 52.6
101 95.7
102 (...)
10101
10102
10103
10201
10203
(...)
(...)
1010203010202010 87.6
What I need is to create a local variable named
var_1010203010202010 = 87.6
for each one of the cells in column1 and assign to it the values in column 2 and keep it in memory. Later, I need to call these variables using the values in column1. I`ve tried to do with an array but I get the OVERFLOW error
(imagine an array with 1010203010202010 lines). Besides, it seems like a waste of memory to declare thousands of lines just to use a few. I've come up to some posts about 'concatenating variables and string as variables names' but they all had a solution within the array scope.
Thank you in advance!
Leo