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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Conditional fomatting background colour

Hi all,

 

Need your help!

 

I have a table. and want to colour background of all row that have RFC date

 

what i have

SSITR PROGGRESSPUNCH PROGRESSRFC DATE
110010010/26/2020
270100 
35070 

 

what i want

SSITR PROGGRESSPUNCH PROGRESSRFC DATE
110010010/26/2020
270100 
35070 

 

thank you,

CL

2 REPLIES 2
v-robertq-msft
Community Support
Community Support

Hey, @colourfullife

According to your requirement, you can follow in my footsteps:

1.Create a calculated column:

Flag = 
IF(
    [RFC DATE]=BLANK(),
    1,
    0)

2. Create a table chart and place columns in your table, and select conditional formatting, like this:

3. Set like this, and do the same for the other three columns [ITR PROGGRESS], [PUNCH PROGRESS], [SS]

屏幕截图 2020-10-27 141414.png

And you can get whatever you want, like this:

屏幕截图 2020-10-27 141457.png

You can download my test pbix file here

Best regards

Qin Community Support _Robert Team

If this post helps,then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@Anonymous , there is no row conditional formatting. You have to do it for all the columns. If needed create a color measure and use that in conditional formatting using "Field value"

 

example

Color sales = if(AVERAGE(Sales[Sales Amount])<170,"green","red")
Color Year = if(FIRSTNONBLANK('Table'[Year],2014) <=2016,"lightgreen",if(FIRSTNONBLANK('Table'[Year],2014)>2018,"red","yellow"))

refer

https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-numbers-in-the-column
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors