This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I was trying to highlight cell which have higher values then total and it's possible only we have static value but I want to apply same condition whenever report is filtered by using slicers.. please help.
Result after applying filter:-
Solved! Go to Solution.
Hi @Kirt_dalvi ,
Try to create measures and set the conditional format.
totalb = CALCULATE([Bounce %],ALL('Table'))Flag =
VAR CurrentValue = 'Table'[Bounce]
VAR TotalValue = 'Table'[totalb]
RETURN IF(CurrentValue > TotalValue, 1, 0)
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kirt_dalvi ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
Flag =
VAR CurrentValue = MAX('Table'[Amount])
VAR TotalValue = AVERAGEX(ALLSELECTED('Table'),'Table'[Amount])
RETURN IF(CurrentValue > TotalValue, 1, 0)
Set the conditional format.
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you so much for Replying.
And Sorry, My organisation won't allow me to share data. But I can explain you exact scenario.
1. In table, The cells which were highlighted are not columns,they are coming from measure.
3. I applied your solution by creating new table ( clicked on three dot - export data) and applied same formula on it. But Showing same error.
Formula is applied on bounce%
Hi @Kirt_dalvi ,
Try to create measures and set the conditional format.
totalb = CALCULATE([Bounce %],ALL('Table'))Flag =
VAR CurrentValue = 'Table'[Bounce]
VAR TotalValue = 'Table'[totalb]
RETURN IF(CurrentValue > TotalValue, 1, 0)
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 21 | |
| 18 |