Hi,
I've a table that would like to delimit multiple column with specific string
Script below able to point to the specific column but unable to delimit the data
Appreciate 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"),
Column( dt, headerList[i] ) << text to columns( delimiter( "_" ));
);
);