Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I have a page with a filter and a table.
In the filter I put an abbreviation and the label so that the user can work with it better. In addition, the selection should be restricted to all entries that start with "Z". And as follows:
If(Left(S_Price.PriceGroup, 1) = 'Z', '(' & S_Price.PriceGroup & ') ' & S_Price.ypA_PriceGroupName, null())
Now I want to display the content of the table only when a selection has been made in the filter. If I don't have an IF condition, I can use
GetSelectedCount(S_Price.PriceGroup) > 0 or GetSelectedCount(S_Price.PriceGroup)
However, due to the IF condition, Qlik no longer recognizes the fields in the filter, which is why the condition for display is not met.
What formula can I use to display the columns?