Create a loop to add column properties to columns that contain a specific header
Hello, Being still new with JSL, I'm still struggling with the implementation of certain concepts namely looping. Any way, I'm trying to create a script which would add to any column in a table in which the header contains "Norm" a number of specific column properties.dt=current data table();
a = "Norm";
col = dt << get column names( string );
nc = N Items( col );
For( i = 1, i <= nc, i++,
If( Con...
vince_faller