Formula to round up to the nearest 10 cents

Mr2017

Well-known Member
Joined
Nov 28, 2016
Messages
644
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi

Is there a formula to round up a number to the nearest 10 cents?

So if the number 0.78 was in cell A2, and it was increased by 10% in B2 to 85.8, it would be rounded up to 90 cents....


Number10%
0.780.858

<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>
</tbody>
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Try:

AB
1Number10%
2 $ 0.78 $ 0.90

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
B2=ROUND(A2*(1+B1),1)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Last edited:
Upvote 0
Cool! Thanks Eric!

That worked!
Just checking... are you sure Eric's formula always gives you the correct value? I ask because your original question was slightly confusing. You said...

"Is there a formula to round up a number to the nearest 10 cents?"

Your use of "round up" and "nearest" sort of conflict with each other. To know for sure if Eric's formula works for you all the time, what should the answer be if cell A2 contains 0.49 as a value? Increasing it by 10% would yield 0.539... rounding up would give 0.60 as the answer while just normal rounding to the nearest 10 cents (Eric's formula) would give 0.50 as the answer. If you really wanted rounding up, then just change Eric's ROUND function call to ROUNDUP...

=ROUNDUP(A2*(1+B1),1)
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,780
Members
449,049
Latest member
greyangel23

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