cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles