Below is an attempt to use a string variable as the name of a lookup table - it doesn't work.
Is there any way to do this?
~~~~~
dim tablestring as string*5
tablestring="menu1"
readtable tablestring,kk,xx
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Below is an attempt to use a string variable as the name of a lookup table - it doesn't work.
Is there any way to do this?
~~~~~
dim tablestring as string*5
tablestring="menu1"
readtable tablestring,kk,xx
A string is a string.
Readtable applies to Tables.
xx=tablestring(kk) will work