To copy a global list to a global table you can use the following command:
Table.query("SELECT * FROM List1").cloneTo("GlobalTable1");
Is it possible to do something similar with an internal list?
List InternalList = ?
Table.query("SELECT * FROM $1”, InternalList).cloneTo("GlobalTable1");
Thank you!
bumped