How do I correctly iterate over column names to produce summary tables grouped by each?
Hi there,
I'm writing a script in jsl to search through column headers, find those beginning with the number 9, and then produce a summary table from a large data set that is grouped by those columns. Currently, my code is working for the first column, but seems to stop after that. Any help would be appreciated!
dt = Current Data Table();
N = N Col( dt );
For( i = 1, i <= N, i++,
colname = Colu
...