Deleting multiple columns based on strings in their name
Hi,
I need to delete multiple columns based the strings they contain but sometimes I want to keep some others even if they don't contain those strings.
So by following this post's solution Deleting multiple columns based on column name
dt = Open( "$sample_data/Hollywood Movies.jmp" );
col_names = dt << Get Column Names( String );
For( i = N Items( col_names ), i > 0, i--,
If(
Not(
Conta...
vince_faller