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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Dowsey1977
New Member

Turn Negative Numbers into Positive

Hi,

 

I have a column in a table called Account_Balances that I want to sum into table on a report.  I have used the below to acheive this:

CALCULATE((SUM(Report1[ACCOUNT_BALANCE])),Report1[ACCOUNT_BALANCE]<0)

 

However, because the source data is negative where the account balance is in credit, the total number is also a negative number.  I am trying to turn that into a positive number on the report, but failing miserably.

 

Here is what I have tried so far:

1. Created a measure on source table with ABS(ACCOUNT_BALANCE).  Then used the below formula:

CALCULATE(SUM(Report1[ABSBalance]),FILTER(ALL(Report1),Report1[ACCOUNT_BALANCE]<0))
2. Tried inserting ABS( ... ) in various places within my original formula
 
Whatever I have tried, the table on the report just goes blank.  Any ideas what I am doing wrong?
 
TIA,
Dowsey
1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Positive balance =
ABS (
    CALCULATE ( ( SUM ( Report1[ACCOUNT_BALANCE] ) ), Report1[ACCOUNT_BALANCE] < 0 )
)

View solution in original post

2 REPLIES 2
Dowsey1977
New Member

Excellent - many thanks...I knew it would be a simple solution, I'm just a newbie to Power BI.

johnt75
Super User
Super User

Try

Positive balance =
ABS (
    CALCULATE ( ( SUM ( Report1[ACCOUNT_BALANCE] ) ), Report1[ACCOUNT_BALANCE] < 0 )
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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