Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

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!