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
mdoan
New Member

Red Negatives without Conditional Formatting

I have an ask to make numbers returned in a measure red when negative without conditional formatting so that users who aren't Power BI savvy will be able to just drag and drop the measure into any visuals they create and still see red negatives. I feel like this is either not possible or I'm an idiot who's missing something obvious, but I only know how to do this with conditional formatting. Any suggestions much appreciated.

1 ACCEPTED SOLUTION
v-karpurapud
Community Support
Community Support

Hi @mdoan 

Thank you for reaching out to the Microsoft Fabric Community Forum, Also thank you all @danextian , @Ritaf1983 and @BhavinVyas3003  for your responding on this topic.
 

Unfortunately, there is no way to automatically color negative values red in a measure itself in Power BI without conditional formatting. DAX does not support returning formatted text with inline color instructions that visuals will interpret as color. If  "drag-and-drop and automatically works is necessary," then the best practical approach is pre-build visuals or a report template where conditional formatting is already applied to your measures. Users then drag and drop pre-styled visuals, not raw measures.


 

If this response resolves your query, kindly mark it as Accepted Solution to help other community members. A Kudos is also appreciated if you found the response helpful.
 

Thank You!

View solution in original post

5 REPLIES 5
v-karpurapud
Community Support
Community Support

Hi @mdoan 

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

v-karpurapud
Community Support
Community Support

Hi @mdoan 

Thank you for reaching out to the Microsoft Fabric Community Forum, Also thank you all @danextian , @Ritaf1983 and @BhavinVyas3003  for your responding on this topic.
 

Unfortunately, there is no way to automatically color negative values red in a measure itself in Power BI without conditional formatting. DAX does not support returning formatted text with inline color instructions that visuals will interpret as color. If  "drag-and-drop and automatically works is necessary," then the best practical approach is pre-build visuals or a report template where conditional formatting is already applied to your measures. Users then drag and drop pre-styled visuals, not raw measures.


 

If this response resolves your query, kindly mark it as Accepted Solution to help other community members. A Kudos is also appreciated if you found the response helpful.
 

Thank You!

danextian
Super User
Super User

hi @mdoan 

In Power BI, dynamically changing colors depends on using conditional formatting. Simply setting a format string with a color, like in Excel, will not work.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Ritaf1983
Super User
Super User

Hi @mdoan 
There is no other oprion to format values , except of conditional formatting.
Unfortunately you cant use something like #,##0;[Red]-#,##0
on measure / column level like with excel.
You can suggest it as idea here :
https://community.fabric.microsoft.com/t5/forums/postpage/board-id/fbc_ideas

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
BhavinVyas3003
Super User
Super User

Power BI does not support making negative numbers red directly in a measure without using conditional formatting. DAX can't change text colour.

May be you check workaround as formatting measure like this,

IsNegativeColor = IF([YourMeasure] < 0, "#FF0000", "#000000")

Apply Conditional Formatting - Font colour in your visuals.

This way, less-savvy users can still drag the main measure, and if you provide a template PBIX with formatting in place, they don’t need to know how it works.


Thanks,
Bhavin
Problem solved? Hit “Accept as Solution” and high-five me with a Kudos! Others will thank you later!

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