@hogi wrote:unfortunately, tabulate ignores line breaks in the column names
same for Tables/Split which ignores everything including/after the first line break:
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
: sex << set name("1st line \!n 2nd line");
Data Table( "Big Class" ) << Stack(
columns( :name, :"1st line
2nd line"n )
);