roundup before multiplied formula??

micfly

Well-known Member
Joined
Sep 8, 2008
Messages
543
I'm sure this is easy for somebody..
How do I multiply two numbers rounded up to the next whole number...


=(A1*B1)

Cell values: 20.5 x 30.25 = 620.125 ...not like this<not like="" this<not="" this="" (="A1*B1)=" 620.125


but lke this... 20.5 x 30.25 (21 x 31) = 651

651 is the answer I'm looking for.</not>
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi,

Use ROUNDUP like this:


Book1
ABC
120.530.25651
Sheet630
Cell Formulas
RangeFormula
C1=ROUNDUP(A1,0)*ROUNDUP(B1,0)
 
Upvote 0
Maybe this


Excel 2007
ABC
120.530.25651
Sheet2
Cell Formulas
RangeFormula
C1=ROUNDUP(A1,0)*ROUNDUP(B1,0)
 
Last edited:
Upvote 0
Okay, I knew you guys would make it look easy :) But now if I take that formula and put =(C1/144) in D1 I get 651/144= 4.52 - I want 5 to be the answer (D1 rounded up).
 
Upvote 0
Try:


Book1
ABCD
120.530.256515
Sheet630
Cell Formulas
RangeFormula
C1=ROUNDUP(A1,0)*ROUNDUP(B1,0)
D1=ROUNDUP(C1/144,0)


Edit: BTW, you keep surrounding your Multiplication and Division with Brackets, they're not needed, doesn't hurt, but not needed.
 
Last edited:
Upvote 0
or, if you wanted to save a step.....

Excel 2007
ABC
120.530.255
Sheet1
Cell Formulas
RangeFormula
C1=ROUNDUP(ROUNDUP(A1,0)*ROUNDUP(B1,0)/144,0)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,538
Members
449,038
Latest member
Guest1337

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