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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
gauravsukhadia
Frequent Visitor

Calculated Column ( Order of Calculation trouble )

Hi Team,

 

I have unique problem where Power BI Calculated column returns wrong result and not as per formula. 

 

Second Part of My formula is trying to say give me weight of each product if product profile matches "Angle" then (edge_width*2-thickness)*thickness*length*0.0075*quanity. If I calculate manually then 50mmx50mmx4mm Angle = 6 MTR weight should come as 18.0864 Kg but Power BI gives 99.2464 kg. I have no idea why? Possibly due to order of calulation is going wrong ? 

 

Formula : 

weight = if(OR('Transactions_2020-21'[Profile]="Universal Beam",'Transactions_2020-21'[Profile]="Universal Column"),'Transactions_2020-21'[edge_width2]*'Transactions_2020-21'[Length]*'Transactions_2020-21'[Quantity], IF('Transactions_2020-21'[Profile]="Angle", 'Transactions_2020-21'[edge_width1]*2-'Transactions_2020-21'[thickness]*'Transactions_2020-21'[thickness]*'Transactions_2020-21'[Length]*0.00785*'Transactions_2020-21'[Quantity],0))
 
Please help. Thanks 

 

 

1 ACCEPTED SOLUTION
sktneer
Resolver I
Resolver I

In the actual formula, you are missing parenthesis as used in your following manual calculation so the order of calculation would be different.

(edge_width*2-thickness)*thickness*length*0.0075*quanity

View solution in original post

5 REPLIES 5
sktneer
Resolver I
Resolver I

In the actual formula, you are missing parenthesis as used in your following manual calculation so the order of calculation would be different.

(edge_width*2-thickness)*thickness*length*0.0075*quanity

Sorry, my bad I wasn't putting both parenthesis so it was showing the wrong result. You are the man, your solution worked. 

Anonymous
Not applicable

use DAX Formatter , just paste your code, it will format and inform where you are missing parenthesis.

happy learning 🙂

But if I put parenthesis then If the formula assumes calculation is over and state the next parameter you know what I mean. 

gauravsukhadia
Frequent Visitor

gauravsukhadia_0-1624073256070.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors