Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a query regarding combing alternate state and default state. In my dashboard i have three different charts with three different states(with three different multibox having same three different states ) but now i want other filters(Brand circled in black color) to work on all charts with default state. Following is the expression written for charts
=num(count({stateA<Year ={"$(=Max(Year)-2)"}>}DISTINCT Sold_Date),'#,##0.0')
Now how to add another state as default state in same expression ?
is brand button ? you want to display the default result when you select the Brand ?
Its text box when I click on brand a list box appears as brand and yes i want to display the default result for all three charts
then,the easy way is,you can use calculation condition.
give the condition as, getselectedcount(brandfield)>0.
and use yourdefault expression.
Can you please send some sample application.
May be this
=Num(Count({stateA<Year ={"$(=Max(Year)-2)"}, Brand = p({$} Brand)>}DISTINCT Sold_Date),'#,##0.0')
or
=Num(Count({stateA<Year ={"$(=Max(Year)-2)"}, Brand = $::Brand>}DISTINCT Sold_Date),'#,##0.0')
Did you resolved the issue, post it to help others.