Forum Discussion
Anonymous
3 years agoNot applicable
Modify Dax measure to include multiple selected cities
Hi Experts How can i change the following DAX measure so if i select mulitple cities on my slicers they are reflected in the title in the graph... Dynamic Title (Congestion) = VAR Result ...
- Anonymous3 years ago
worked it out
Dynamic Title (Congestion) =VAR Result = "Congestion Delay Index:"&" "&CONCATENATEX(DimCongestionCity,DimCongestionCity[City]," ,")ReturnResult
pratyashasamal
Memorable Member
3 years agoHi Anonymous ,
Please try to use ALLSELECTED function .
For example :-
AllSelected = CALCULATE(SUM(Orders[Sales]) ,ALLSELECTED(Orders[Product Category]))
Please refer to the link :-
https://learn.microsoft.com/en-us/dax/allselected-function-dax
Thanks ,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C