cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

Data Filter Script

phillby
Level I

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