cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

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