Names Default To Here(1);
nw = New Window("",
teb = Text Edit Box("", << Set Width(300), << Set N Lines(3)),
Button Box("Get",
cur_txt = teb << get text;
l = Words(cur_txt, "\!N");
show(cur_txt, l);
);
);
Write();
Using something simple like Words with \!N will work most of the time


But if it is possible that there are cells with multi-line values, it will require extra handling. The better you know the pattern of your cells, the easier it will be to handle the values.
-Jarmo