Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to see if any values are selected

Hi,

I would like to have a button that changes color if at least one selection is made in all the entire document.

Is there any way to do this?

I already know how to see if a selection is made on one field. But, here, it is different. It is like opening the current selection box and see that there is something or nothing in it. How to achieve this by code?

I want to avoid to check each field one by one.

Thanks

Caroline

1 Solution

Accepted Solutions
Not applicable
Author

if(len(getcurrentselections())> 0 , green())

View solution in original post

2 Replies
Not applicable
Author

if(len(getcurrentselections())> 0 , green())

Not applicable
Author

So Simple ! 🙂

Thanks !!