Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Auto-clear filters when a specific sheet is opened

Hello,

I'm wondering if there's a way to automatically clear all filters each time a specific sheet is opened.

Thanks

Kendrick

5 Replies
awhitfield
Partner - Champion
Partner - Champion

Hi Kendrick,

Sheet Properties > Triggers >

On Activate Sheet > Add Action > Add > Selection > Clear All

HTH - Andy Sample attached

Anonymous
Not applicable
Author

Possible with custom extension.

drop extension on sheets where you want selection to clear

example code ..

define( ["qlik"], function ( qlik ) {

  'use strict';

  return {

  paint: function ( $element, layout ) {

  var app = qlik.currApp();

  app.clearAll();

  }

  }

} );

Not applicable
Author

Hi Andrew,

Where is the 'Triggers' selection located under 'Sheet properties'? I am on a Qlik Sense dashboard, not Qlik View.

Thanks

awhitfield
Partner - Champion
Partner - Champion

Hi Kendrick,

sorry didn't spot that, don't think they are available yet!

Andy

Amal
Partner - Contributor III
Partner - Contributor III

did you manage to find something Kendrick ?