Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a set of expressions in a chart.
I want one of the expression to disapear whenever I make a selection (no matter what) on a certain field.
How can I do it?
Thanks,
Boris
Hi Boris,
One of the ways to achieve this, right click on the chart, go to Properties--Presentation tab, click on that particular expression which you want conditionally hidden in "columns" section, mark it conditional, then in the condtion you can use the following expression:
=GetSelectedCount([Fieldname])<=0
Hope this helps!
Hi,
For that expression in chart we have check conditional and write in that conditional box as =if(GetSelectedCount(<field>)<>1,true(),false())
Hi Boris,
One of the ways to achieve this, right click on the chart, go to Properties--Presentation tab, click on that particular expression which you want conditionally hidden in "columns" section, mark it conditional, then in the condtion you can use the following expression:
=GetSelectedCount([Fieldname])<=0
Hope this helps!