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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
hitesh160790
Frequent Visitor

Multiplication issue 4th Decimal

In my query, I am multiplying 2 columns.

 

One of the rows has values:

Column A = 4.0797

Column B = 353

If we multiply we should get 1440.1341

 

But I am Getting 1440.1383, this is happening for each row generally the 3rd decimal point is coming wrong. I am not sure how to handle this scenario or fix it.

 

All columns have data type as Decimal and it shows 4 decimal points.

 

Thank you

 

 

Thank you

Hitesh

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @hitesh160790 ,

 

Try to use ROUND to keep two decimal places. Then, the values of other decimal places will not affect subsequent calculations.

For example, 

Measure = SUM('Table'[Column1])*SUM('Table'[Column2])
Measure 2 = ROUND(SUM('Table'[Column1]),2)
Measure 3 = ROUND(SUM('Table'[Column2]),2)
Measure 4 = [Measure 2]*[Measure 3]

roun.PNG

BTW, .pbix file attached.

 

 

Best Regards,

Icey

 

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

View solution in original post

3 REPLIES 3
Icey
Community Support
Community Support

Hi @hitesh160790 ,

 

Try to use ROUND to keep two decimal places. Then, the values of other decimal places will not affect subsequent calculations.

For example, 

Measure = SUM('Table'[Column1])*SUM('Table'[Column2])
Measure 2 = ROUND(SUM('Table'[Column1]),2)
Measure 3 = ROUND(SUM('Table'[Column2]),2)
Measure 4 = [Measure 2]*[Measure 3]

roun.PNG

BTW, .pbix file attached.

 

 

Best Regards,

Icey

 

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

jdbuchanan71
Super User
Super User

@hitesh160790 

Can you do it with a measure instead?

Amount = SUMX( 'Table' , 'Table'[Column1] * 'Table'[Column2] )

 2020-06-03_13-13-07.jpga.jpg

Thank you @jdbuchanan71 for replying. 

Actually columns are coming from 2 different tables:
 
I will give you the original multiplication: 
SUMX(PlannedRequirements,PlannedRequirements[Plan Buy])*SUMX(FinishedGoods,FinishedGoods[Component Qty Per Assembly]*(100/(100-FinishedGoods[Scrap Factor]))*FinishedGoods[Part Qty Per Assembly])
 
Column A > SUMX(PlannedRequirements,PlannedRequirements[Plan Buy]) = 353
Column B > SUMX(FinishedGoods,FinishedGoods[Component Qty Per Assembly]*(100/(100-FinishedGoods[Scrap Factor]))*FinishedGoods[Part Qty Per Assembly]) = 4.0797
 
Now if I multiply these two I am getting the wrong result for the 4th decimal point.
 

Helpful resources

Announcements
Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.