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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Kirt_dalvi
Regular Visitor

Conditional formatting

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.

IMG_20230704_174816.jpg

 

Result after applying filter:- 

 

IMG_20230704_180031.jpg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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. 

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @Kirt_dalvi ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1688608811953.png

(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.

vtangjiemsft_1-1688608898789.png

(3) Then the result is as follows.

vtangjiemsft_2-1688608918201.png

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.

  • 2. Values(Parameters ex. Age band ... )are filtered by chicklet slicer and Normal slicers are also added on same page to examine values for specific parameters.

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%

 

16886255934067370243536793751045.jpg

 

    

 

Anonymous
Not applicable

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. 

Kirt_dalvi
Regular Visitor

Kirt_dalvi
Regular Visitor

@amitchandak please help 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors