Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Guys,
I have an expression Taux that displays % I would like to add a condition so if Taux <10% don't display the row
Thanks
May be use this if statement for all the expressions in your chart
If(Taux_Expression >= 0.10, Expression1)
If(Taux_Expression >= 0.10, Expression2)
If(Taux_Expression >= 0.10, Expression3)
... and so on
Would like to see the expression.