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 Formatting for line and stacked column chart

Hi,

How do i apply conditionaly formatting on Actual and forecast data on my chart?

 

I am using line and stacked column chart and the values are Weekdate (Shared Axs), Actuals (Column Values) and Forecast (Line values). Condition

if Actual> budget then green or else red. Please share your thoughts.

 

WeekDateActualForecast
02/16/2022100 (Red line)110 (Green line)
02/23/2022200 (Green line)180 (Red lline)

 

Regards,

Venkat

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

I created a sample pbix file(see attachment) for you base on your provided info, please check whether that is what you want.

1. Create a measure as below to judge the compare the size of Actual and Forecast

Measure = IF ( SUM ( 'Table'[Actual] ) > SUM ( 'Table'[Forecast] ), 1, 0 )

2. Make conditional formatting on Columns field(not Lines field) 

yingyinr_0-1645782082562.png

Best Regards

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Can anyone please share your thoughts?

Anonymous
Not applicable

Hi @Anonymous ,

I created a sample pbix file(see attachment) for you base on your provided info, please check whether that is what you want.

1. Create a measure as below to judge the compare the size of Actual and Forecast

Measure = IF ( SUM ( 'Table'[Actual] ) > SUM ( 'Table'[Forecast] ), 1, 0 )

2. Make conditional formatting on Columns field(not Lines field) 

yingyinr_0-1645782082562.png

Best Regards

Have struggled in the past and subsequently 'forgotten' how conditional formatting applies to the different visuals.

Thank you for sharing your knowledge

Anonymous
Not applicable

Thank you.. its really helped

amitchandak
Super User
Super User

@Anonymous , if you are using legend, conditional formatting is not supported.

if can use clustered line visual then you can try

 

Try with both columns on the shared axis and concatenate label off, as I discussed in this video

Concatenate Label off : https://youtu.be/QgI0vIGIOOk

 

You will be able to use conditional formatting

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
Anonymous
Not applicable

@amitchandak your solution is not working in my case.. 

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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