MyTable.GET(n);...however in not all the above apply then you can do the following (although it will be slower)...
MyTable.FIND('-'); IF n > 1 THEN MyTable.NEXT(n - 1);
MESSAGE('The 4th City is %1',MyTable.City);...or if you need a question then...
IF CONFIRM('Select 4th City: %1?',FALSE,MyTable.City) THEN...
Merged := FORMAT(tb1.Num) + ' ' + tb2.city; MESSAGE('%1 %2', Merged);...OR...
MESSAGE('%1 %2', tb1.Num, tb2.city);
Answers
...however in not all the above apply then you can do the following (although it will be slower)...
...or if you need a question then...
tb1.GET(1);
tb2.GET(2);
Merged := tb1.Num + ' ' + tb2.city;
MESSAGE('%1', Merged);
...OR...
P.S. If my previous posts helps then you should select the "Yes" option on the "Does this post answer your question YES / NO"