Skip to main content

New to Qlik Sense

If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Action-Packed Learning Awaits! QlikWorld 2023. April 17 - 20 in Las Vegas: REGISTER 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

ank
Former Employee
Former Employee

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 ?