cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
JesperJohansen
Level IV

Script for hiding/closing local data filter

I am trying to find a script which will close or hide the local data filter from a report. I have tried :

Dispatch( {}, "Local Data Filter", OutlineBox, {Close(1)} );

This seems to work for everything except the local data filter. Please help.

BR
Jesper
1 REPLY 1
kahart
Level I

Re: Script for hiding/closing local data filter

I use

Dt_filter_model = Model_data << Data  Filter(invisible,

                                                    Columns(:model_name,                                                               
                                                                   :vehicle_id,

                                                                    ),

                                                     where(:model_name == model_list);

                                                     where (:vehicle_id == vehicle_list)

                                                   );

Dt_filter subset = model_data << subset(selected rows(all), invisible);

dt_filter_model << close;

dt_filter_model << close;

Recommended Articles