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
imy
Helper I
Helper I

ABS

I am trying to create a new column where I convert all negative amounts from column [Amount] to positive amounts by row as follows:

Expenses = ABS(bank[Amount])
but I keep getting the following message:

''A single value for column 'Amount' in table 'Rabobank' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.''

 

If I use the RELATED formula:

Expenses = RELATED(ABS(bank[Amount]))
I get the following message: ''Function RELATED expects a fully qualified column reference as its argument.''

What can I use to solve this probem?

Many thanks!

Imy

2 REPLIES 2
v-danhe-msft
Employee
Employee

Hi @imy ,

Could you please offer a simple sample data to have a test if possible?

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

If you are trying to calculate this column in a table that is related to the 'bank' table you should be able to do this by reversing the order of the 2 functions

 

eg.

 

=ABS( RELATED( bank[Amount] ) )

 

Related will pull a single value from a related table (which is on the "1" side of a 1 to many relationship) and then once you have that value you can use ABS to convert everything to a positive value.

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.