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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Marac0105
Frequent Visitor

Conditional Column Formatting in Column Chart

Hi all,

 

Is there a possibility to conditional format columns in column chart based on slicer selection?

 

Thanks in advance for all your help.

1 ACCEPTED SOLUTION
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Marac0105 

Yes,you may check below sample file.Create a measure and use it as rule in conditional formatting.

Measure = 
IF (
    SELECTEDVALUE ( Table1[event] ) = "event1"
        && SUM ( Table1[value] ) > 5,
    1,
    IF (
        SELECTEDVALUE ( Table1[event] ) = "event2"
            && SUM ( Table1[value] ) > 3,
        2,
        IF (
            SELECTEDVALUE ( Table1[event] ) = "event3"
                && SUM ( Table1[value] ) > 2,
            3
        )
    )
)

1.png

Regards,

 

Community Support Team _ Cherie Chen
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

2 REPLIES 2
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Marac0105 

Yes,you may check below sample file.Create a measure and use it as rule in conditional formatting.

Measure = 
IF (
    SELECTEDVALUE ( Table1[event] ) = "event1"
        && SUM ( Table1[value] ) > 5,
    1,
    IF (
        SELECTEDVALUE ( Table1[event] ) = "event2"
            && SUM ( Table1[value] ) > 3,
        2,
        IF (
            SELECTEDVALUE ( Table1[event] ) = "event3"
                && SUM ( Table1[value] ) > 2,
            3
        )
    )
)

1.png

Regards,

 

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-cherch-msft 

 

Thanks a lot for your help, it helped me.

 

Regards

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 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.