The question is about Combine Columns().
From Scripting index, I can find below example.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Consumer Preferences.jmp" );
dt << Combine Columns(
delimiter( "," ),
Columns(
:Brush After Waking Up,
:Brush After Meal,
:Brush Before Sleep,
:Brush Another Time
),
Selected Columns are Indicator Columns( 1 ),
Column Name( "When to Brush" )
);
My problem is that I have random 100 columns to 200 columns of data.
How can I utilize the script to get all columns to replace above exact column name in red font?
Thanks.