I'm writing a macro that creates a results table that looks like this:
Name value1 value2
string1 number number
string2 number number
At this point, if I use the getResultString("Name", 0) command in a loop I get the desired result (string1).
However, I need to save the table and re-open it at a later point.
If I save the Results table, close it and import it as a Results table, getResultString("Name", 0) gives me "Null" as an answer. I tried saving it as .txt, .csv, or .xls files but the problem persists.
The re-imported table looks the same, but for some reason getResultString doesn't seem to work.
Any pointers? Workarounds?