Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Team,
I have below data and contributors field spefic name like "F" alone I need to highlight , can you please help me.

Thanks,
KV's
Solved! Go to Solution.
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"
)
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.
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"
)
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.
@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)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 46 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 88 | |
| 75 | |
| 41 | |
| 26 | |
| 26 |