Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
we have created a tooltip as a quickinfo.
But the tooltip should not appear on the total line.
How can i fix this?
Thanks,
Paul
Solved! Go to Solution.
Let's try another measures:
TooltipMeasure =
IF(
NOT(ISBLANK(SELECTEDVALUE(BD_Schedule_Report[Project]))),
SELECTEDVALUE(BD_Schedule_Report[YourTooltipColumn]),
BLANK()
)
Or
TooltipMeasure =
IF(
HASONEVALUE(BD_Schedule_Report[Project]),
MAX(BD_Schedule_Report[YourTooltipColumn]),
BLANK()
)
Hey @PaulCz ,
Could you please create this measure and add as tooltip?
TooltipMeasure =
IF(
HASONEVALUE(YourTable[YourColumn]),
YourTable[YourTooltipColumn],
BLANK()
)
Hi,
does not work.
No individual value can be determined for the “Project” column in the “BD_Schedule_Report” table. This can happen when a measurement formula references a column with many values without specifying an aggregation such as MIN, MAX, COUNT, or SUM to get a single result.
Let's try another measures:
TooltipMeasure =
IF(
NOT(ISBLANK(SELECTEDVALUE(BD_Schedule_Report[Project]))),
SELECTEDVALUE(BD_Schedule_Report[YourTooltipColumn]),
BLANK()
)
Or
TooltipMeasure =
IF(
HASONEVALUE(BD_Schedule_Report[Project]),
MAX(BD_Schedule_Report[YourTooltipColumn]),
BLANK()
)
wow..the first one has worked out. Thank you so much.
Hello @PaulCz
I also had the same requirment. I tried but didn't get result as expected. We can't restrict the tooltip for certian part of visual. Hence, finally I would say it's impossible to turn off tooltip on total line.
Thanks!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
81 | |
53 | |
37 | |
37 |