Compounded Roundup

schaferdd

New Member
Joined
Oct 17, 2013
Messages
37
Assume starting value is in cell A1.
I wish to multiply this figure by 1.01, and round to nearest integer (result in cell B1).
Then, then take this rounded figure result and next multiply by 1.02 (also rounded to nearest integer).
Then, take this rounded figure result and next multiply by 1.03 (also rounded to nearest integer).
Note: final value is in cell B1 and essentially a multiple calculation within the one formula.
Thanks!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
This formula nests the functions as you desired.

=ROUND(1.03*ROUND(1.02*ROUND(1.01*A1,0),0),0)
 
Upvote 0
Maybe:

Book1
AB
1107.54114
Sheet2
Cell Formulas
RangeFormula
B1B1=ROUND(ROUND(ROUND(A1*1.01,0)*(1.02),0)*1.03,0)
 
Upvote 0

Forum statistics

Threads
1,215,262
Messages
6,123,939
Members
449,134
Latest member
NickWBA

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