Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Field Selection to unhide a set of tables?

I am new on Qlikview and not at all experienced in programming.

I want to prepare a sheet with several tables and charts, but I want them visible only after on field is selected. I understood that I need to work with Conditional on the tables.

Any help is very much welcome. If possible with one example.

Thanks in advance.

afonso

1 Solution

Accepted Solutions
calvindk
Creator III
Creator III

You can use GetCurrentSelections() and parse that, or if you only want it to show if exactly 1 in a specific field then GetPossibleCount()

It would look something like:

If(GetPossibleCount(FieldName) = 1, 1, 0)

View solution in original post

3 Replies
calvindk
Creator III
Creator III

You can use GetCurrentSelections() and parse that, or if you only want it to show if exactly 1 in a specific field then GetPossibleCount()

It would look something like:

If(GetPossibleCount(FieldName) = 1, 1, 0)

Not applicable
Author

Thanks. It works perfectly.

calvindk
Creator III
Creator III

You are most welcome.

Please also mark the answer as Correct once completed, so it is easier to track what has been finished and what is still ongoing.

Best wishes