Hey everyone,
How do I simply clear the “Summary” table from within a script? (not the “Results” table!)
Thanks
Hi Sarah,
In ImageJ macro language, use this:
NumberofRows=Table.size(“Summary”);
Table.deleteRows(0, NumberofRows-1, “Summary”);
Cheers,
M.
1 Like
Thanks