Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 !
That's OK, i just found the solution:
not (isnull(GetFieldSelections(main_field_1)))
OR
not (isnull(GetFieldSelections(main_field_2)))
.....
That's OK, i just found the solution:
not (isnull(GetFieldSelections(main_field_1)))
OR
not (isnull(GetFieldSelections(main_field_2)))
.....