To grab the notes, I used this. I can export this separately to Excel.
dt = Current Data Table();
rej = dt << Get Column Group( "REJ");
notes_list = {};
For( i = 1, i <= N Items( rej ), i++,
prop = rej[i] << Get Property( "Notes" );
insert into(notes_list, prop);
);
dt = New Table( "Notes Data" );
dt << New Column( "Parameter", Character, Values( rej ) );
dt << New Column( "Notes", Character, Values( notes_list ) );
Slán
SpannerHead