Is RoundUp the right path?

geno32080

Board Regular
Joined
Jan 23, 2020
Messages
107
Office Version
  1. 2013
Platform
  1. Windows
Okay I got the if formula taken care of, Thank you. The next hurtle is to be able to round up. Cell C3 =24. Cell D3 divides 24/200. The 24 is the individual quantity needed and 200 is the case quantity. I've tried a few different methods. I need the returned result to be 1 no decimal.
The formula I tried in D3 is =ROUNDUP(C3/200,1). It returns zero.
I'm stuck, any one have an Idea?
Thank you for reading my post.
 

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.
You are telling it to round up to the next highest number to one decimal place, that next, you are rounding up to the next highest multiple of 0.1. To round up to the next highest integer use

Rich (BB code):
=ROUNDUP(C3/200,0)
 
Upvote 0
Solution
You are telling it to round up to the next highest number to one decimal place, that next, you are rounding up to the next highest multiple of 0.1. To round up to the next highest integer use

Rich (BB code):
=ROUNDUP(C3/200,0)
Yep, that's the ticket. I tried all sorts of combo's, 0 never crossed my mind..
Thank you sir. Once again this site rules!!
 
Upvote 0

Forum statistics

Threads
1,215,323
Messages
6,124,246
Members
449,149
Latest member
mwdbActuary

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