Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to hide my expression in my chart only if nothing is selected in any filters.
So in the conditional show box for expression I tried to put this:
=if(GetCurrentSelections() <> 0)
but it doesn't work.
Any ideas?
Try this instead:
If you want to display when something is selected, try this:
Len(Trim(GetCurrentSelections)) > 0
For the expression to display when nothing is selected, try this:
Len(Trim(GetCurrentSelections)) = 0
Try this instead:
If you want to display when something is selected, try this:
Len(Trim(GetCurrentSelections)) > 0
For the expression to display when nothing is selected, try this:
Len(Trim(GetCurrentSelections)) = 0