Stack column using table variable list
I would like to stack a list of columns based on a table variable, but I'm having trouble figuring out how to format the variable and the script //this is my table variable -- I've called it myList
{"colName1", "colName2"}//this is my script
dt = Current Data Table();
dt << Stack(
columns(myList),
Output Table( "New Table" )
);I have a table with column names colName1, colName2, colName3...And I...