Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 ?
Solved! Go to Solution.
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 )
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 )
Muchas gracias
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
63 | |
53 | |
39 | |
25 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |