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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
dvraan
Frequent Visitor

ToolTip Advance - Filter Help

Hi all,

I'm working on a Power BI report where I show monthly Gross Sales in a table and would like to display a tooltip chart when hovering over the table rows. The goal of this tooltip is to show the entire year's trend line for Gross Sales, not just the single month that was hovered.

 What I want:

  • When hovering over a row (e.g., Brand 3), I want the tooltip to show a Bar chart for the full year (e.g., Jan–Dec ).

  • The tooltip should still respect other slicers from the main page:
    e.g., State but ignore Month Slicer


 What I’ve Tried:

  • Created a Tooltip Page.

  • Enabled the page as a tooltip and linked it to the table.

  • It works — but only shows a single month (the row context from the table).

  • However, the date context from the hovered row still dominates the chart axis — only one Bar appears instead of the full year.

What I Need Help With:

  1. How can I structure my tooltip chart (and DAX) to:

    1. Ignore just the row-level month/date from the hovered row

    2. Still respect the full context of slicers (State etc.)

    3. Always show the full year trend on the tooltip chart?

dvraan_0-1746057077732.png

 

File working 

 

1 ACCEPTED SOLUTION
SamWiseOwl
Super User
Super User

Hi @dvraan 

 

You would need to create a seperate table with the Month Name in it and use that in a slicer.

This would not filter the model.

 

Instead we edit the Gross column to say:

Gross = CALCULATE( SUM(Sales[Gross Sales]), 'Date'[Month] = SELECTEDVALUE('Month Table'[Month name]))
Then in the tooltip chart just put the:
SUM(Sales[Gross Sales])
 
SamWiseOwl_0-1746090480896.png

 


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

View solution in original post

2 REPLIES 2
dvraan
Frequent Visitor

This solution is great. Thanks! @SamWiseOwl 

SamWiseOwl
Super User
Super User

Hi @dvraan 

 

You would need to create a seperate table with the Month Name in it and use that in a slicer.

This would not filter the model.

 

Instead we edit the Gross column to say:

Gross = CALCULATE( SUM(Sales[Gross Sales]), 'Date'[Month] = SELECTEDVALUE('Month Table'[Month name]))
Then in the tooltip chart just put the:
SUM(Sales[Gross Sales])
 
SamWiseOwl_0-1746090480896.png

 


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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