Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Is there a function that will tell me the name of the most recent table in the load script? For example:
Table1:
Load * from
SQL select * from orders;
Table2:
Load * from
SQL select * from customers;
let a = LastTableLoaded(); // would return "Table2"
Thanks!
Let vTableName = TableName( NoOfTables()-1 );
Let vTableName = TableName( NoOfTables()-1 );
Exactly what I was looking for. Thanks!