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

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
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,284
Messages
6,124,067
Members
449,140
Latest member
SheetalDixit

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