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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to add a static tooltip in power BI?

How to add a static tooltip in power bi?

I am new here and I want to add a tooltip that shows the median value,0.25th percentile and 0.75th precentile for a group of population.I have the measures to calculate these values but they change when a selection is made on the other widgets and also since this is a bar graph showing different segments,they also change based on the segments which is not desired.The median,0.25 and 0.75th precentile should be static to make sense out of the visual.

Can anyone help me ?

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can use ALL function to ignore filter. Here I created a sample for your reference.

Measure = 
VAR sel =
    SELECTEDVALUE ( 'Table'[catgory] )
VAR per =
    DIVIDE (
        CALCULATE ( SUM ( 'Table'[value] ) ),
        CALCULATE ( SUM ( 'Table'[value] ), ALL ( 'Table' ) )
    )
VAR per2 =
    DIVIDE (
        SUM ( 'Table'[value] ),
        CALCULATE ( SUM ( 'Table'[value] ), ALLSELECTED ( 'Table' ) )
    )
RETURN
    IF ( sel = "a", per, per2 )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can use ALL function to ignore filter. Here I created a sample for your reference.

Measure = 
VAR sel =
    SELECTEDVALUE ( 'Table'[catgory] )
VAR per =
    DIVIDE (
        CALCULATE ( SUM ( 'Table'[value] ) ),
        CALCULATE ( SUM ( 'Table'[value] ), ALL ( 'Table' ) )
    )
VAR per2 =
    DIVIDE (
        SUM ( 'Table'[value] ),
        CALCULATE ( SUM ( 'Table'[value] ), ALLSELECTED ( 'Table' ) )
    )
RETURN
    IF ( sel = "a", per, per2 )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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