How to get names of the selected columns in string format
In my script I use the following to get the list of all columns in a string format:columnNames = dt << Get Column Names( string );
I need that so I could iterate through them using "For Each" loop:For Each( {columnName, index}, columnNames, Column( dt, columnName ) << Set Name( columnName ||"SomethingHere" ) );
Now I need to only get selected columns and run the same loop on them.I know only one way...