Sum and round up query

Sandiabella

New Member
Joined
Oct 4, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hello - I am trying to round up a value to the nearest 50 (with no decimal places), the value is a sum lookup from a different tab, it looks like this but doesn't work;

=ROUNDUP(SUM('2 Granted Patent Renewals'!P8+'2 Granted Patent Renewals'!P24+'2 Granted Patent Renewals'!P40+'2 Granted Patent Renewals'!P56),0)

I have tried ROUND too but neither work, can someone help?

Thanks!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
try
=CEILING(SUM(SUM('2 Granted Patent Renewals'!P8+'2 Granted Patent Renewals'!P24+'2 Granted Patent Renewals'!P40+'2 Granted Patent Renewals'!P56),50)

that will ROUNDUP
so if the result of the sum is say 10 - it will still roundup to 50 and not down to 0

Book4
ABC
1
2150
32
420
51.222
Sheet1
Cell Formulas
RangeFormula
C2C2=CEILING(SUM(A2:A9),50)
 
Upvote 0
try
=CEILING(SUM(SUM('2 Granted Patent Renewals'!P8+'2 Granted Patent Renewals'!P24+'2 Granted Patent Renewals'!P40+'2 Granted Patent Renewals'!P56),50)

that will ROUNDUP
so if the result of the sum is say 10 - it will still roundup to 50 and not down to 0

Book4
ABC
1
2150
32
420
51.222
Sheet1
Cell Formulas
RangeFormula
C2C2=CEILING(SUM(A2:A9),50)
You're a star - that's worked, thank you so much!
 
Upvote 0
you are welcome

i think ceiling.math has replaced ceiling, so ceiling is there for backward compatibility , not sure
=CEILING.MATH(SUM(A2:A9),50)

not sure what difference it makes (ceiling.math handles negative numbers)

Book6
ABCD
1
215050
32
420
51.222
Sheet1
Cell Formulas
RangeFormula
C2C2=CEILING(SUM(A2:A9),50)
D2D2=CEILING.MATH(SUM(A2:A9),50)
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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