How to prevent a data table window from appearing when creating it via script in JMP?
Hi everyone,
I have a JMP script that merges multiple tables into a single output table (see code snippet below).
Even though I’m trying to keep it hidden using:
Data Table("Combined_Output_Table") << Invisible(1);
the data table window still pops up briefly when it’s created (especially when using Concatenate or Join).
Is there a reliable way to keep the table from opening at all while th...