HELP with Rounding

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

Guest

I have a spreadsheet with numbers that appear as so:

2.1
2.5
3.2
2.1

I used the ROUND function to round the numbers but for the 2.1 it takes it
down to 2. I need it to bring it back up to 3. Is that possible. Any help
will be appreciated.
 
Instead of Round, use Roundup. For example if those numbers are in column a,
the formula would be =ROUNDUP(A2,0) The 0 being for how many digits after the
decimal you want. This means 2.1 will round to 3.
 
=CEILING(A2,1)

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
If you want everything to be rouded up to the nearest integer, then:

=roundup(A1,0)

HTH,
Paul
 
Hi Sandi,

you dont need to "back up" negative numbers, isn't it?

happy holidays
 

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