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
Anonymous
Not applicable

Trying to divide two columns but getting error

I'm new to DAX SORRY if this is a silly question. I'm trying to Divide two columns to find margin. 
Here's my intention 
(Column A-Column B)/Column A
 
What I wrote : 
Measure = DIVIDE(SUM('table name'[fieldname]-SUM('fieldname'), SUM('table name[(field name)])
 
Error I'm getting
The SUM function only accepts a column reference as an argument.
 
Thanks for your help!
1 ACCEPTED SOLUTION
daXtreme
Solution Sage
Solution Sage

Writing code, any code for that matter, requires from the author something that's called pedantry.

daXtreme_0-1668792576090.png

Your code has an obvious problem:

Measure = DIVIDE(SUM('table name'[fieldname]-SUM('fieldname'), SUM('table name[(field name)])

Can you spot it? It's rather easy based on what the error message says. And it says:

The SUM function only accepts a column reference as an argument.
 
Column references in DAX are of the form 'Table'[ColumnName]. Measures, on the other hand, should never be preceded by the name of the table they reside in.
 
By the way, this form:
SUM('table name[(field name)])
might also be wrong if the field name is not originally surrounded with "(..)". What's more, you're missing the closing ' (apostrophe) here...
 
You have to write code exactly as the rules dictate. Otherwise, you'll be getting errors all over the place.

View solution in original post

2 REPLIES 2
v-yinliw-msft
Community Support
Community Support

Hi @Anonymous ,

 

According your code , you lost a “)” in the end of the first “table name[fieldname]”, in front of the minus.

vyinliwmsft_0-1669022278213.png

 

Hope this helps you.

 

Best Regards,

Community Support Team _Yinliw

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

daXtreme
Solution Sage
Solution Sage

Writing code, any code for that matter, requires from the author something that's called pedantry.

daXtreme_0-1668792576090.png

Your code has an obvious problem:

Measure = DIVIDE(SUM('table name'[fieldname]-SUM('fieldname'), SUM('table name[(field name)])

Can you spot it? It's rather easy based on what the error message says. And it says:

The SUM function only accepts a column reference as an argument.
 
Column references in DAX are of the form 'Table'[ColumnName]. Measures, on the other hand, should never be preceded by the name of the table they reside in.
 
By the way, this form:
SUM('table name[(field name)])
might also be wrong if the field name is not originally surrounded with "(..)". What's more, you're missing the closing ' (apostrophe) here...
 
You have to write code exactly as the rules dictate. Otherwise, you'll be getting errors all over the place.

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.

Top Solution Authors