Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
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.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 61 | |
| 42 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 122 | |
| 117 | |
| 37 | |
| 34 | |
| 30 |