Excel rounding issue.

cmerrick

Board Regular
Joined
Jun 8, 2017
Messages
78
Office Version
  1. 365
Platform
  1. Windows
I have a formula -

=ROUNDDOWN((B26/'FA Afford'!G32*12),-2)

which equates to

(£227.14 / 4.85%) * 12

On a standard calculator this gives me roughly '56,199.58762886598' but excel seems to want to round this up automatically to £56,200 in spite of my rounding down.

How can I get this to display as ''56,199.58762886598' and then round down to £56,100.00 ?
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
If I use the ROUNDDOWN formula, I get 56,100, which appears to be what you want.
Where do the values in B26 and 'FA Afford'!G32 come from?
Are they formulas too? If so, you may need to round those values too.
 
Upvote 0
Using those values, it appears to work ok

1596456443950.png
 
Upvote 0
What do you get if you don't round down & just use
= B26/'FA Afford'!G32*12
 
Upvote 0
If I use the ROUNDDOWN formula, I get 56,100, which appears to be what you want.
Where do the values in B26 and 'FA Afford'!G32 come from?
Are they formulas too? If so, you may need to round those values too.


They are coming from other formulas that DON'T have rounding which may be the issue but.... I'm dubious to change the other formulas as so far this is the only instance of this not working correctly.

It's a fairly complex set of formulas and I'm not sure of the implications throughout the document considering it's worked for everything else
 
Upvote 0
That means your values are not 227.14 and 4.85%, as already suggested.
 
Upvote 0
I'm dubious to change the other formulas as so far this is the only instance of this not working correctly.
You don't have to change the other formulas, just this one to round each value you are using, i.e.
=ROUNDDOWN((ROUND(B26,2)/ROUND('FA Afford'!G32,4)*12),-2)
 
Upvote 0
If you had 227.14166 or 4.84995 you would get a value of ~56200
 
Upvote 0
my exact values are as follows;

B26 = 227.1417262

Which is (B24 - B25)

B24 = 892.8571429
B25 = 665.7154167

the 'FA Afford'!G32' (4.85%) has no further decimals

If I round down B26 then I get the correct value.

My issue with doing this is I've tested this on way over 1000 different scenarios (it's a very advanced loan calculator) and this is the only time I've had a problem with the value displayed. Every other scenario has worked out bang on
 
Upvote 0

Forum statistics

Threads
1,214,624
Messages
6,120,591
Members
448,973
Latest member
ksonnia

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