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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
PaulCz
New Member

Tooltip should not appear on total line

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

 

PaulCz_1-1738923682737.png

 

1 ACCEPTED 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()
)

View solution in original post

5 REPLIES 5
anilelmastasi
Resolver III
Resolver III

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.

suparnababu8
Super User
Super User

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! 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors