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

The 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.

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 MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Kudoed Authors