Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AlanP514
Helper V
Helper V

Dynamic Custom tooltip

Tooltip 2 =

var MySelection = SELECTEDVALUE('Year [Year sales])

return SWITCH(TRUE(),

MySelection="2019","2019 Cumulative",

MySelection="2020","2020 Cumulative",

MySelection="2021","2021 Cumulative",

MySelection="2022","2022 Cumulative",

MySelection="2023","2023 Cumulative",

MySelection="2024 ","2024 Cumulative",

"2019 Cumulative"

)


Hai All, I need your help on this, I had created a custom tooltip based on a single selection, and I need your help on Dax, when a user selects multiple selections, I want to make a custom tooltip based on multiple selections
Now Situation is like this
2019 ,2020,2021,2022,2023,2024 These are the slicers
and if the user selects 2019 custom tooltip will return “2019 cumulative”
The above one is correct but I want to add multiple selections as well

For e.g. If the user selects 2019 and 2020 I want to make a custom tooltip as 2019 && 2020 Cumulative
 If user select 2020 && 2021 == 2020 && 2021 Cumulative
if the user selects all options in slicer then All year cumulative

Please help
thanks

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@AlanP514 , Create a measure like

 

Concatenatex(Year,Year [Year sales], ", ")  & " Cumulative"

 

or

 

 

Concatenatex(values(Year[Year Sales],Year [Year sales], ", ")  & " Cumulative"

 

if needed use sort order option

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@AlanP514 , Create a measure like

 

Concatenatex(Year,Year [Year sales], ", ")  & " Cumulative"

 

or

 

 

Concatenatex(values(Year[Year Sales],Year [Year sales], ", ")  & " Cumulative"

 

if needed use sort order option

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.