How to delimit multiple column with specific string in jsl
Hi, I've a table that would like to delimit multiple column with specific stringScript below able to point to the specific column but unable to delimit the dataAppreciate if anyone could help on this. Thanks Names Default To Here( 1 );
dt = Data Table( "Sales");
headerList = dt << get column names( string );
For( i = 1, i <= N Items( headerList ), i++,
If( Contains(headerList[i], "sales"),
...