I need help rounding numbers, please.

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

Guest

Hi everyone,

I need to round numbers as part of a formula and can't figure it out.

Say I have 72.5 and need to divide it into 3

I get 24.16 (then I need to round 24.6 to the next even number = 26)

(Anything over an even must go to the next even.)

Any ideas really appreciated.

Thanks,
Emilio
 
Assuming, based on your example, that you want to round *up* to the
nearest even number, one way:

=CEILING(72.5/3,2)
 
=ROUNDUP(A16/2,0)*2

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi

With your number p.e. in A2
=ROUNDUP(A2/(3*2),0)*2

Arvi Laanemets
 
Thanks a lot to everybody.

I am impress how many people are willing to help.

Thanks again,
Emilio
 

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