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
Solved! Go to Solution.
@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
@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
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!
User | Count |
---|---|
107 | |
74 | |
66 | |
50 | |
49 |
User | Count |
---|---|
163 | |
85 | |
76 | |
68 | |
67 |