cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
phillby
Level I

Data Filter Script

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?

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Data Filter Script

Try just df << close instead of df << close window.

View solution in original post

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Data Filter Script

Try just df << close instead of df << close window.

phillby
Level I

Re: Data Filter Script

Thanks, that one became very frustrating