Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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)
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)
Thanks. It works perfectly.
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