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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
thanmaya07
Contributor
Contributor

Qlik Sense Button

Hi all,

I'm trying to implement a Button with few Actions. 

In Button --> Actions --> Select Values in a field,

Field Name: Target

Field value : =5 is working.

But when I mention >5 ,this is not working.

I need a button action which triggers values of Target greater than 5. Someone please help

Labels (1)
2 Replies
Nicole-Smith
MVP
MVP

Use this for your field value:
=concat({<Target={">5"}>}distinct Target, ';')

The "Select values in a field" option expects a semi-colon separated list, hence the concat().

thanmaya07
Contributor
Contributor
Author

Thanq so much Nicole. I tried it, its working.