Forum Discussion
Fryyy
8 years agoAdvocate II
Edit Tooltip First/Last! Middle??
Hello Community, i have a problem with the tooltip. Normaly you can show the first and the last value if there are no numbers in it. E.g. i have 3 values (Station1, Station2, Station3) at the same ...
- 8 years ago
Fryyy
8 years agoAdvocate II
Thats quiet good but not exactly what i want.
Is it also possible like that?
Time: 10:30:00
Station: Station1
Station: Station2
Station: Station3
or like that
Time: 10:30:00
Station: Station1, Station2, Station3
Abduvali
8 years agoSkilled Sharer
You can have it any way you want:
Create this measure and drop into tooltips:
Station: =
"Station 1: " & CALCULATE(SUM(Sheet1[Time ]), Sheet1[ Station] = "Station1") & "
" &
"Station 2: " & CALCULATE(SUM(Sheet1[Time ]), Sheet1[ Station] = "Station2") & "
" &
"Station 3: " & CALCULATE(SUM(Sheet1[Time ]), Sheet1[ Station] = "Station3")
Hope this will solve your issue.
Regards
Abduvali