Hi,
I have much information in global tabels (from Excel). For my simulation logic I need access to these data and sometimes sort it.
When I have FlexScript and make a query to create a new temporary table, can I include a variable like "i" or a token lable in the query?
Example:
for (int i = 1; i<=10; i++) { Table result=Table.query("SELECT * FROM Customers \ WHERE [Customer Group] = i) ; //Create items in a special queue dependant of i }
How can I access the data in an other way?
Thank you for helping.