ChatterBank1 min ago
Excel Spreadsheet Help ... Rounding Up
20 Answers
Can anyone tell me how to tell a cell to round up?
Suppose my simple formula is ...
Cell C = Cell A x Cell B
If the number in Cell B is not a whole number, I would like Cell C to round up to the next whole number.
Suppose my simple formula is ...
Cell C = Cell A x Cell B
If the number in Cell B is not a whole number, I would like Cell C to round up to the next whole number.
Answers
Oh ok you have a calculation too. = Roundup(( cellA* CellB), 0) The reason being you are rounding up the final answer to a whole number of units. Not changing the view. That said in practice it may make no odds to you.
09:59 Fri 16th Jan 2015
Not quite sure what you mean here. Do you want cell C to round up the final value of AxB? or do you want the cell B rounded up before the calculation is done? Andrews answer is correct . You can formulate any cell to round the number by highlighting the cell right clicking and choosing 'number' and 'no decimal place.
More examples here:
http:// www.tec honthen et.com/ excel/f ormulas /roundu p.php
http://
Okay, so ...
Suppose C are printed programmes, in boxes of 100
I have five events (Cell A1 = 5)
Each event needs half a box of programmes (Cell B1 = 0.5)
At the moment my formula in Cell C1 is ... =A1*B1
Which tells me to order 2.5 boxes
But I can't order half boxes.
For Cell C1 to be useful in further calculation, I need it to automatically round up to the next whole number, each time I change the numbers in A1 and B1.
I've tried ... =ROUNDUP A1*B1
But that hasn't done it.
Suppose C are printed programmes, in boxes of 100
I have five events (Cell A1 = 5)
Each event needs half a box of programmes (Cell B1 = 0.5)
At the moment my formula in Cell C1 is ... =A1*B1
Which tells me to order 2.5 boxes
But I can't order half boxes.
For Cell C1 to be useful in further calculation, I need it to automatically round up to the next whole number, each time I change the numbers in A1 and B1.
I've tried ... =ROUNDUP A1*B1
But that hasn't done it.
The ROUNDUP command needs to be told the number of decimal places that you want to use when rounding up. (In your case, since you want to round to an integer, you need to set that to zero).
It might be simplest to do the unrounded calculation first and then round afterwards. So C1=A1*B1 and D1=ROUNDUP(C1,0), where D1 is the rounded answer you require.
It might be simplest to do the unrounded calculation first and then round afterwards. So C1=A1*B1 and D1=ROUNDUP(C1,0), where D1 is the rounded answer you require.
Related Questions
Sorry, we can't find any related questions. Try using the search bar at the top of the page to search for some keywords, or choose a topic and submit your own question.