Rounding column of #s down so each cell is a multiple of 5

  • Thread starter Thread starter hoshour
  • Start date Start date
Repost of question:
"Rounding column of #s down so each cell is a multiple of 5"

In the future, try to use the body of a post for your question, as titles of
posts get cut-off.
Something similar to this should work.
=FLOOR(A2,5)
 
=MROUND(A2,5), and copy down.
and next time please ask your question in the body of the message, not just
in the subject line.

If you have problems with MROUND, look it up in Excel help.
 
Thanks. I'll try it again.

Luke M said:
Repost of question:
"Rounding column of #s down so each cell is a multiple of 5"

In the future, try to use the body of a post for your question, as titles of
posts get cut-off.
Something similar to this should work.
=FLOOR(A2,5)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
Reading it again (having not read your subject line fully), I see that you
don't want MROUND, but FLOOR.
=FLOOR(A2,5)
 
Back
Top