Incorrect Output of Formula

lauriamoulton

New Member
Joined
Apr 17, 2009
Messages
7
my spreadsheet has many formulas that depend on /and use the output of other formulas. The final result is wrong.

Cell E13 ='[mileage2011.xlsx]BGT Quarter Miles'!$C$11 (pulls the number from a cell on another workbook) "17719"
Cell F13 =E13/'BGT 1st Pg 1-2'!N37 (divides E13 by the miles per gallon(9.63), which is the result of another formula on another sheet within this workbook) "1840"
Cell G13 ='[mileage2011.xlsx]BGT Quarter Miles'!$C$13 (pulls the number from a cell on another workbook) "1812"
Cell H13 =F13-G13 (no explanation needed) "28"
Cell I13 = .1600 (tax rate)
Cell J13 =H13*I13 (no explanation needed, but the result is 4.43, when it should be 4.48.....

What am i doing wrong? Thanks

Lori
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
A couple possible causes.

1. Formatting..
If you have all your cells formatted to show only say 2 decimals, but the number actually holds 8 decimals (or whatever), then the amount you see displayed is actually a rounded result. but the actual value is unchanged.
Suggest formatting ALL related cells to show 10 decimals or so, you may find your problem.

2. Floating point precision...
I don't know a whole lot about this issue, but it's well documented at Microsoft's website, search microsoft for "floating point precision"

If this is the issue, use the round function in your formulas like forF13, use
=ROUND(E13/'BGT 1st Pg 1-2'!N37,2)
That rounds the result to the nearest 2 decimals.


Hope that helps.
 
Upvote 0
No problem,

Just out of curiosity (and the sake of others watching), which problem was it, how did you resolve?
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,558
Members
452,928
Latest member
101blockchains

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top