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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Louis66
Resolver I
Resolver I

Conditional formatting working partially !!!

Hello, I have a simple problem - I have positive and negative returns for an Index... using Conditional formatting (measure), all my bars are blue, even though I have negative returns (sould be in Red)...

Louis66_0-1672758579092.png

 

Can someone help me ?

 

Louis

1 ACCEPTED SOLUTION

HI @Louis66 ,

 

So in that case you need to modify your measure. Use SUM(Data[Returns]) in your condition in the measure.

You won't need a SELECTEDVALUE there. You can write your measure something like following:

Color =
VAR returns_value = SUM ( Data[Returns] ) // total value of the value used
RETURN
    SWITCH (
        TRUE (),
        returns_value < 0, "#FF0000", // hexcode for Red color
        "#0000FF" // hexcode for Blue color
    )

I just wrote the DAX above on the fly, so check if there are any syntax errors.

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

View solution in original post

3 REPLIES 3
Pragati11
Super User
Super User

HI @Louis66 ,

Few questions:

1. Is Color a measure that you have created?

2. On your visual if you represnting a column value, in your case Data[Returns], then it must have been summarised to SUM, AVERAGE, etc. But in your measure you are using the column value but not the one represented on your visual in my view.

Can you share screenshot around what you are displaying on your visual?

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Hello Pragati, yes this is a measure I created, and yes I did use SUM for my returns... this is the screen shot.

Louis66_0-1672765524055.png

... and my data :

Louis66_1-1672765594045.png

 

It is the first time I have that kind of problem...

 

Louis

HI @Louis66 ,

 

So in that case you need to modify your measure. Use SUM(Data[Returns]) in your condition in the measure.

You won't need a SELECTEDVALUE there. You can write your measure something like following:

Color =
VAR returns_value = SUM ( Data[Returns] ) // total value of the value used
RETURN
    SWITCH (
        TRUE (),
        returns_value < 0, "#FF0000", // hexcode for Red color
        "#0000FF" // hexcode for Blue color
    )

I just wrote the DAX above on the fly, so check if there are any syntax errors.

 

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Helpful resources

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

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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