Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. 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.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 28 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 49 | |
| 44 | |
| 43 | |
| 39 | |
| 32 |