Rounding Up in Cells With Formulas

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Current formula:
=SUM(CJ:CP14) formatted, as number to 2 places displays 861.74.
Formatted number 0 places displays 862.

Regardless of formatting, other cells using this cell result, use 861.74,
how can I get the other cells to use the rounded up number.

THX
 
Assuming you want it rounded to the nearest integer change formula to

=ROUND(SUM(CJ:CP14),0)
 
I notice that your range contains a typo, of course formula needs to be
something like

=ROUND(SUM(CJ1:CP14),0)
 
If you want to round UP to the nearest integer, then:

=ROUNDUP(SUM(CJ1:CP14),0)

Regards,
Paul
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top