cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Len
Regular Visitor

How to convert negative numbers into positive numbers

Hi all,

 

Apologies in advance if this has been answered before.

 

As the subject suggests; How can I convert negative numbers into positive numbers?

 

Thanks

5 REPLIES 5
mchacon
Advocate I
Advocate I

Calculate column, from negative to positive and keep positive as positive.

= each if [COLUMN] < 0 then [COLUMN] *-1 else [COLUMN] *1)

AliceW
Impactful Individual
Impactful Individual

Thank you for your solution! I'd also add that it also works for measures.

 

lescamp79
Advocate I
Advocate I

You could also highlight the column in the query editor and right click, select transform, and choose absolute value. That would give the positve number outcome you're looking for. 

Greg_Deckler
Super User
Super User

@Len - You might have to wrap it in an IF statement if you want to preserve already positive numbers. 

 

You could also use the ABS function (absolute value)

 

You cold also multiple by -1, "[Column] * -1"

 

With ABS you could get rid of negative numbers while not impacting the positive numbers.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...
KHorseman
Community Champion
Community Champion

Just put a "-" or a "0 -" in front. A double negative is a positive.

 

For instance, I have a measure that calculates lost opportunities, intended to be used on a column chart along with a net gain measure. What I want is for the loss to be a descending column below the 0 line, and the gain to be a positive column above. The basic calculation of each is a sum, so they normally both return a positive number. So my formula instead is:

 

Lost Opportunity = 0 - CALCULATE(

SUM(Items[Forecast Amount]) - SUM(Items[Actual]),

FILTER(

Items,

Items[Status] = "Cancelled"

)

)

 

Elsewhere I have another measure that requires the positive number version of Lost Opportunity, so:

 

% Lost = DIVIDE(-[Lost Opportunity], [Total Gain])

 

Lost Opportunity already returns a negative number, so -[Lost Opportunity] converts it back.

 





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

Proud to be a Super User!




Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors