Hello,
I searched some threads releated wiht this but I couldn't see an efficient answer unfortunately, so I had to open a new thread.

What I wonder is it possible to use a variable in lookup?
I need to get variable's content as a string data to send it to display.
What I'm trying to say is that I want to do sompething like this;

for table_index=0 to X
lookup table_index,["Variable Value is:",myVar],store_data
gosub subroutine
next table_index

subroutine:
'send store_data to output

now, if MyVar contains 100, I want to send it to subroutine digit by digit as table_index increases, like; V a r i ..... 1 0 0. Not V a r i ......100

is this possible with lookup? or a backdoor to do this?