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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Get the number of selected fields without macros

Hello all !

I would like to know if QlikView provides a way (without any macro) to know how many field have been selected.
Indeed, i've a very memory-hungry table and i would like to avoid the full calculation of it everytime, that's why i want to calculate it only when the user has selected at least 1 filter.

I have thought about the "GetCurrentSelections" or "GetFieldSelections" and use it with the main filters....

What's your opinion ?

Thanks !

1 Solution

Accepted Solutions
Not applicable
Author

That's OK, i just found the solution:

not (isnull(GetFieldSelections(main_field_1)))
OR
not (isnull(GetFieldSelections(main_field_2)))
.....

View solution in original post

1 Reply
Not applicable
Author

That's OK, i just found the solution:

not (isnull(GetFieldSelections(main_field_1)))
OR
not (isnull(GetFieldSelections(main_field_2)))
.....