Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two filters Month and Date. If user selects any particular Month and Period then I want to execute
expression1
If user only selects month but not any date then I want to use
Expression2.
Expression1 or Expression2 are different calculations
Eg :
If (UserSelection : Only Month but not any date , Expression1,Expression2)
Could you please do let me know if you have any ideas how to resolve this scenario.
Thanks
if(getselectedcount([Month]>0 and getselectedcount([Period]) >0 , expression1,expression2)
if(getselectedcount([Month]>0 and getselectedcount([Period]) >0 , expression1,expression2)