cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
AlanP514
Super User
Super User

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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors