How to rounding to the larger round number

K0st4din

Active Member
Joined
Feb 8, 2012
Messages
488
Office Version
  1. 2016
  2. 2013
  3. 2011
  4. 2010
  5. 2007
Platform
  1. Windows
Hello, everyone,
I'm trying to find a solution for a formula that, after summing a certain column of numbers, can round the sum to the larger round number.
For example:
The column is A2:A6
a2 = 5.20
a3 = 0.80
a4 = 100.00
a5 = 55.00
a6 = 20.02
total is = 181.02
I'm looking in this example to be able to round to be = 200.00
That is, to be a round number, but the largest
Thanks to anyone who could help me
 

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
This will round up to the next 100:

Book1
A
1
25.2
30.8
4100
555
620.02
7
8181.02
9200
Sheet6
Cell Formulas
RangeFormula
A8A8=SUM(A2:A6)
A9A9=ROUNDUP(A8,-2)
 
Upvote 0
Thank you very much.
I am infinitely grateful for your cooperation.
Now you have even given the idea to combine the two formulas so that the result can be in one cell.
You are amazing.
=ROUNDUP(SUM(A2:A6);-2)
 
Upvote 0

Forum statistics

Threads
1,214,845
Messages
6,121,902
Members
449,053
Latest member
Guy Boot

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