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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Dax - color highlight

Hi Team,

 

I have below data and contributors field spefic name like "F" alone I need to highlight , can you please help me.

 

Capture.PNG

 

Thanks,

KV's

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, you can create a measureu as the conditional formatting judgment condition, mark the designated "F" as red or any color you like. I did a test, the reference is as follows:

 

M =
SWITCH (
    TRUE (),
    MAX ( 'Table'[Contributor] ) = "F", "red",
    MAX ( 'Table'[Contributor] ) <> "F", "green"
)

vhenrykmstf_0-1629098272933.png

 

vhenrykmstf_1-1629098289252.png

 

vhenrykmstf_2-1629098389235.png

 


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Below is the sample pbix file.

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

According to your description, you can create a measureu as the conditional formatting judgment condition, mark the designated "F" as red or any color you like. I did a test, the reference is as follows:

 

M =
SWITCH (
    TRUE (),
    MAX ( 'Table'[Contributor] ) = "F", "red",
    MAX ( 'Table'[Contributor] ) <> "F", "green"
)

vhenrykmstf_0-1629098272933.png

 

vhenrykmstf_1-1629098289252.png

 

vhenrykmstf_2-1629098389235.png

 


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Below is the sample pbix file.

Greg_Deckler
Community Champion
Community Champion

@Anonymous Not sure I completely understand but perhaps create a measure like the following and use it in a Rules-based conditional formatting?

Measure = IF(MAX('Table'[Contributors])="F",1,0)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors