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
jyaul786
Helper II
Helper II

Tooltips single page

Dear Friends,

i have table with Product,Product value and Group ID, Group value.

jyaul786_0-1692262161033.png

and separte column chart for both Product and Group ID and one tooltip page.

jyaul786_1-1692262262740.png

and i want to get value(tooltip) through single custom tooltip page. means whenever i hover to Product column chart, it will pop up with 'Product Value' and whenever i hover to Group column chart, it will pop up with 'Group Value'. how can i achieve this from single custom tooltip page. with help of DAX.

-without unpivot column at power query side

 

1 ACCEPTED SOLUTION
Prateek97
Resolver III
Resolver III

Hi @jyaul786 ,

You can create a dynamic measure which will change values based on the filtered dimension. Something like this:

Tooltip Test =
IF(ISFILTERED('Table'[Product]),
    SUM('Table'[Product Value]),
SUM('Table'[Group Value])).
 
Then on the tooltip page, put this measure in a card. This should work. Let me know if it is still stuck.
 
Please mark as answer if your issue is solved.

View solution in original post

1 REPLY 1
Prateek97
Resolver III
Resolver III

Hi @jyaul786 ,

You can create a dynamic measure which will change values based on the filtered dimension. Something like this:

Tooltip Test =
IF(ISFILTERED('Table'[Product]),
    SUM('Table'[Product Value]),
SUM('Table'[Group Value])).
 
Then on the tooltip page, put this measure in a card. This should work. Let me know if it is still stuck.
 
Please mark as answer if your issue is solved.

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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