In the past I have used an earlier version of JMP. I have now started using JMP 10 and some script that I have used in the past is no longer working.
I want to open a data filter, perform some operations e.g. delete some rows, then close the data filter window. In the past I have used this style of command:
df = Current Data Table() << Data Filter(
Location( {222, 222} ),
Add Filter(
columns( :PalletID ),
Where( :PalletID == "26411666A" ),
Display( :PalletID, Size( 221, 259 ), List Display )
)
);
///[delete / invert etc]
df << close window;
This script no longer appears to be working, and unless I close off this filter window the application becomes unstable. Can anyone help?