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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
ymilne
Frequent Visitor

Conditional Formatting - Bar Chart with Drilldown

I'm trying to apply conditional formatting to a bar chart which has drilldown.

 

The first level is Products, and the scond level is month for full year.  I want the bar chart to be coloured green when viewed at a product level, and for monthly the actuals blue, and the forecast green.

 

The DAX i'm using is as follows.

 

Month Colour (FYF) = 

SWITCH ( TRUE(),

SELECTEDVALUE ( Dim_Table_Date[EndOfMonth]) < [CM Date +1] , "#155199", --Blue Colour--

SELECTEDVALUE ( Dim_Table_Date[EndOfMonth]) > [CM Date] , "#44B388", --Green Colour--

"#44B388" )
 
This works for the monthly data, however, when at Product level it is defaulting to blue and not the green I want.
 
Is it possible to get the green colour without changing my theme settings?
1 ACCEPTED SOLUTION
Kedar_Pande
Super User
Super User

Updated DAX Measure:

Month Colour (FYF) = 
SWITCH(
TRUE(),
ISINSCOPE(Dim_Table_Product[Product]),
"#44B388", -- Green Colour for Product Level
SELECTEDVALUE(Dim_Table_Date[EndOfMonth]) < [CM Date + 1],
"#155199", -- Blue Colour for Monthly Data
SELECTEDVALUE(Dim_Table_Date[EndOfMonth]) > [CM Date],
"#44B388", -- Green Colour for Monthly Actuals
"#44B388" -- Default to Green Colour
)

If this helped, a Kudos 👍 or Solution mark would be great!🎉
Cheers,
Kedar Pande
Connect on LinkedIn

View solution in original post

2 REPLIES 2
Kedar_Pande
Super User
Super User

Updated DAX Measure:

Month Colour (FYF) = 
SWITCH(
TRUE(),
ISINSCOPE(Dim_Table_Product[Product]),
"#44B388", -- Green Colour for Product Level
SELECTEDVALUE(Dim_Table_Date[EndOfMonth]) < [CM Date + 1],
"#155199", -- Blue Colour for Monthly Data
SELECTEDVALUE(Dim_Table_Date[EndOfMonth]) > [CM Date],
"#44B388", -- Green Colour for Monthly Actuals
"#44B388" -- Default to Green Colour
)

If this helped, a Kudos 👍 or Solution mark would be great!🎉
Cheers,
Kedar Pande
Connect on LinkedIn

Thank you, this worked perfectly

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors