Rounding to

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I have a column of numbers, all multiples of 10, starting at 100 and going
up into the thousands. I want to round them to the nearest 50, so 140 would
become 150 and so would 160. How do I do that?

TIA

Steven

I plan to live forever.....or die trying!
 
=ROUND(A1/50,0)*50

--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 
Ok, this is a little more complicated than just rounding. Column B has a
figure which is multiplied by column D to get the amount in column F. So
right now, it looks like =B3*D3 and what I need it to do is round that
figure to the nearest 50. So it would be something like
=(B3*D3)=Round(F3,50))? Sorry I did not get this on sooner.
 
=ROUND(B3*D3/50,0)*50


--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)
 

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

Similar Threads

Round up to nearest 25 or 50? 8
Rounding 5
Rounding Up to the 50 4
Copied Values Rounded to 1,000s 3
Sum and round 3
Rounding to nearest quarter 2
Rounding Formula 3
Rounding problems 6

Back
Top