Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a formula: c5/4
I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. |
#2
![]() |
|||
|
|||
![]()
To divide and round up a number in Excel, you can use the `CEILING` function. Here's how you can modify your formula to achieve the desired result:
For example, if the value in cell C5 is 69, the formula Code:
=CEILING(C5/4,1)
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=roundup(c5/4, 0)
-- HTH... Jim Thomlinson "Pammy" wrote: I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
=roundup(c5/4,0) "Pammy" wrote: I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Monday, September 21, 2009 at 12:40:02 PM UTC-5, Pammy wrote:
I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. What if I want to divide cell D5 by cell B4 and then roundup? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Thu, 5 Jan 2017 10:12:30 -0800 (PST), wrote:
On Monday, September 21, 2009 at 12:40:02 PM UTC-5, Pammy wrote: I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. What if I want to divide cell D5 by cell B4 and then roundup? =INT(C5/4)+1 |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Thu, 05 Jan 2017 14:54:02 -0500, colglbo
wrote: On Thu, 5 Jan 2017 10:12:30 -0800 (PST), wrote: On Monday, September 21, 2009 at 12:40:02 PM UTC-5, Pammy wrote: I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. What if I want to divide cell D5 by cell B4 and then roundup? =INT(C5/4)+1 Didn't read question correctly =INT(D5/B4)+1 |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Monday, September 21, 2009 at 12:40:02 PM UTC-5, Pammy wrote:
I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. Very cool thanks! I also got it to work with =ROUNDUP(D5/B4,0) :) |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Thursday, January 5, 2017 at 12:30:41 PM UTC-8, wrote:
On Monday, September 21, 2009 at 12:40:02 PM UTC-5, Pammy wrote: I have a formula: c5/4 I want a formula to divide: c5/4 then round up to a whole number. example: if the answer is 17.3 I want the answer to be 18. Very cool thanks! I also got it to work with =ROUNDUP(D5/B4,0) :) The ROUNDUP() approach is better. For example, if D5 and B4 happen contain the same number, the desired result is probably 1, not 2. |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=INT(D5/B4)+1
That wouldn't work if the result of the division is a whole number it would round up when it shouldn't roundup is the one you'd want to use |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Divide and round | Excel Discussion (Misc queries) | |||
Format divide by 10 / single digit view: Custom? Text(Round( | Excel Discussion (Misc queries) | |||
Divide by Zero | Excel Worksheet Functions | |||
Divide one row over other row I dont wont to divide one number | Excel Discussion (Misc queries) | |||
How do I ROUND() round off decimals of a column dataset? | Excel Worksheet Functions |