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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
bw70316
Helper V
Helper V

If statement to turn postive to negative

I have budget, actuals, and remaining columns for revenue. When Actuals exceeds the budget that means it has exceed over 100%. However, the figures still return positive. I want to highlight those figures negatively so that the user knows that they are in the black compared to the rest of the revenue types.

 

I am trying to write an If statement that says is % spent > 100%, SIGN(Sign([Rev Remaining)

 

 

I feel like I am close :

Over Rev = IF ( [% spent] > "100%", Sign([Rev Remaining]))
1 ACCEPTED SOLUTION

I think Sign was the wrong DAX formula.

I went with this and got my desired result:

Over Rev = IF ( ([% spent] > 1), -[Abs Rev Remaining], [Abs Rev Remaining])



I guess you can just add a "-" in front of a measure to have the output come out negative.

 

View solution in original post

2 REPLIES 2
dedelman_clng
Community Champion
Community Champion

If [% spent] is a column or measure that is a decimal type, you don't want to compare against a string ("100%"). 100% is the same as saying 1

 

Over Rev = IF ( [% spent] > 1, Sign([Rev Remaining]))

 

Hope this helps

David

I think Sign was the wrong DAX formula.

I went with this and got my desired result:

Over Rev = IF ( ([% spent] > 1), -[Abs Rev Remaining], [Abs Rev Remaining])



I guess you can just add a "-" in front of a measure to have the output come out negative.

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.