Hi folks,
i couldn't find a solution for my problem. I have the following variable list with not only two but possibly up to 200 "variable" names:
I would like to split each string within my sheetlist by the delimiter "-". The part following the delimiter is my actual variable name. I tried to use the split command but i don't think this works for local variable names.
I also have got another problem. I would like to import a string from just one single excel cell and want to store it in order to use it for the label of a variable in my data set. Which type of import makes more sense to achieve my goal? The cell A3 contains the text I would like to store.
Does anyone have any suggestions which commands to use?
Thanks a lot!
i couldn't find a solution for my problem. I have the following variable list with not only two but possibly up to 200 "variable" names:
Code:
local sheetlist "57-C_PPP 57A-C_NC"
I also have got another problem. I would like to import a string from just one single excel cell and want to store it in order to use it for the label of a variable in my data set. Which type of import makes more sense to achieve my goal? The cell A3 contains the text I would like to store.
Code:
import excel MSTI_2015-2.xlsx, sheet("57-C_PPP") cellrange(A3:A3) import excel MSTI_2015-2.xlsx, sheet("57-C_PPP") cellrange(A3:A3) firstrow
Does anyone have any suggestions which commands to use?
Thanks a lot!
Comment