Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

"If Cleared" condition

Hi all,

Is there a function to track when the "Clear" button is hit? I know there's the GetFieldSelections() and GetSelectedCount() functions, but what about a function that returns true when the clear button is punched? I want to hide an object when the user clears all data.

Thanks

Labels (1)
1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Write below in Text BOX

=IF(ISNULL(GetCurrentSelections()),0,1)

0 Means Clear all...

View solution in original post

3 Replies
maxgro
MVP
MVP

and GetCurrentSelections()?

MK_QSL
MVP
MVP

Write below in Text BOX

=IF(ISNULL(GetCurrentSelections()),0,1)

0 Means Clear all...

Not applicable
Author

So simple... thanks!