Copy Selected Column Values
I have a JMP table that contains categories, subcategories and spec limits that I need to reference in a data table. I'm sure there are many ways to do this but I wrote formulas in two added columns that converts to a JMP script when the columns are selected and the values pasted into an empty JMP script.
Added Column 1 contains the formula-
If(Row() == 1,
"dt=Current Data Table();"
)
Ad...