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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
dmalviya
Frequent Visitor

Table Conditional formating based on text column

Hi All,

 

I have one column named EventResult. The possible values are - Success, Fail & Neutral.

 

I am using simple table to show the values. I want to format Backgrould color of column based on EventResult column.

 

Success = Green Color

 

Fail = Red Color

 

Neutral = Yello

 

How this can be done? Please suggest.

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@dmalviya

 

You can use this MEASURE for conditional formatting.

 

See attached file as well

 

Measure =
VAR myEventResult =
    SELECTEDVALUE ( Table1[EventResult] )
RETURN
    SWITCH (
        TRUE (),
        myEventResult = "Success", "#00FDD1",
        myEventResult = "Fail", "#ff2f2f",
        myEventResult = "Neutral", "#ffd62a"
    )

coform.png

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

@dmalviya

 

You can use this MEASURE for conditional formatting.

 

See attached file as well

 

Measure =
VAR myEventResult =
    SELECTEDVALUE ( Table1[EventResult] )
RETURN
    SWITCH (
        TRUE (),
        myEventResult = "Success", "#00FDD1",
        myEventResult = "Fail", "#ff2f2f",
        myEventResult = "Neutral", "#ffd62a"
    )

coform.png

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.