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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
vivran22
Community Champion
Community Champion

Customized Conditional Formatting (Using DAX)

Hi,

 

I am working on designing a solution and need help.

 

There are two facts table: Data and Target.

 

For certain KPIs, I need to compare Yearly/Monthly/Daily actual vs target. I am looking for applying conditional formatting using DAX. I am partial successful in the case if all the target comparision are either "Higher the better" or "Lower the Better". But if I want to dynamically apply the conditional formatting based on the filter selection, then how should I do it?

 

At present, I am using following DAX for conditional formating:

 
Revenue KPI Color (HTB) = SWITCH(
     TRUE()
     ,SUM(Data[KPI_Value]) > SUM(Target[KPI_Value]) , "#f44242"
     
     ,SUM(Data[KPI_Value]) < SUM(Target[KPI_Value]), "#5ff442",
     "#f44242"
)
Revenue KPI Color (LTB) = SWITCH(
     TRUE()
     ,SUM(Data[KPI_Value]) < SUM(Target[KPI_Value]) , "#f44242"
     
     ,SUM(Data[KPI_Value]) > SUM(Target[KPI_Value]), "#5ff442",
     "#f44242"
)

I have created a KPI table with the list of all available KPIs categories and sub-categories. I have included another column for flag for Lower the better. Using this table, I would like to drive the KPI color selection for Higher the Better or Lower the better.

 

Enclosing the sample pbix file here

 

Any help in this regard will be highly appreciated.

 

Thanks,

Vivek

1 ACCEPTED SOLUTION

I had the same issue, forgot to mention you need to transform your column where you define lower is better to number.

Referring to the column on the measures selection.

Regards,
MFelix

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

4 REPLIES 4
MFelix
Super User
Super User

hI @vivran22 ,

 

You can use one of the two measure below to make your condittional formatting:

 

Conditional Low and High =
SWITCH (
    TRUE ();
    SUM ( Data[KPI_Value] ) > SUM ( Target[KPI_Value] )
        && SELECTEDVALUE ( 'KPI'[Lower The Better] ) = 0; "#f44242";
    SUM ( Data[KPI_Value] ) < SUM ( Target[KPI_Value] )
        && SELECTEDVALUE ( 'KPI'[Lower The Better] ) = 0; "#5ff442";
    SUM ( Data[KPI_Value] ) < SUM ( Target[KPI_Value] )
        && SELECTEDVALUE ( 'KPI'[Lower The Better] ) = 1; "#f44242";
    SUM ( Data[KPI_Value] ) > SUM ( Target[KPI_Value] )
        && SELECTEDVALUE ( 'KPI'[Lower The Better] ) = 1; "#5ff442";
    "#f44242"
)
Conditional Low and High = 
IF(SELECTEDVALUE('KPI'[Lower The Better]) = 1 ; [Revenue KPI Color (LTB)]; [Revenue KPI Color (HTB)]
)

Not sure if the order is correct based on your file but the colours change when compared to the visuals you have on your report.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





vivran22
Community Champion
Community Champion

@MFelix 

 

Hi,

 

Thank you for your response. I have tried using both the DAX shared but I am not able to select the DAX under Format by - Field Value option (Conditional Formating). The DAX appears to be greyed out or something like that.

 

Please advise.

 

Thanks,

Vivek

I had the same issue, forgot to mention you need to transform your column where you define lower is better to number.

Referring to the column on the measures selection.

Regards,
MFelix

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





vivran22
Community Champion
Community Champion

Thanks! It worked.

Rgds,
Vivek

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors