cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

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 = "Congestion Delay Index:"&" "&SELECTEDVALUE(DimCongestionCity[City])
Return
 Result
 
the above measure does not work if i select more than one city from the sclier...ie the city name section is blank
1 ACCEPTED SOLUTION

worked it out 

Dynamic Title (Congestion) =
VAR Result = "Congestion Delay Index:"&" "&CONCATENATEX(DimCongestionCity,DimCongestionCity[City]," ,")
Return
 Result

View solution in original post

4 REPLIES 4
pratyashasamal
Impactful Individual
Impactful Individual

Hi @parminderkellah , 
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

 

HI pratyashasamal  this a title measure - not sure how i intergrate allselected into my measure???? based on slicer selection

worked it out 

Dynamic Title (Congestion) =
VAR Result = "Congestion Delay Index:"&" "&CONCATENATEX(DimCongestionCity,DimCongestionCity[City]," ,")
Return
 Result

Hi @parminderkellah ,
So sorry i misunderstood .
Please try this once :-
For example :-

Multi_Months = CONCATENATEX ( VALUES ( financials[Month] ) , [Month] , ",")
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

Helpful resources

Announcements
Exciting changes

Power BI Community Changes

Check out the changes to the Power BI Community announced at Build.

May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Kudo Data Story carousel

Data Stories Gallery

Visit our Data Stories Gallery and give kudos to your favorite Data Stories.

Top Solution Authors