You can use Text boxes
Names Default To Here(1);
dt1 = open("$SAMPLE_DATA/Big Class.jmp");
dt2 = open("$SAMPLE_DATA/Big Class Families.jmp");
Current Journal();
H List Box(dt1 << get as report, dt2 << get as report) << journal;
Close(dt1, nosave);
Close(dt2, nosave);
Text Box("My text") << Journal;
but I would suggest you build your report in new window and then turn it into journal when it is ready (this can be a bit difficult with reports)
Names Default To Here(1);
dt1 = open("$SAMPLE_DATA/Big Class.jmp");
dt2 = open("$SAMPLE_DATA/Big Class Families.jmp");
nw = New Window("",
V List Box(
Text Box("My Text")
),
H List Box(
dt1 << get as report,
dt2 << get as report
);
);
nw << journal;
nw << close window
https://www.jmp.com/support/help/en/17.2/#page/jmp/display-trees.shtml#
-Jarmo