Ending in 5 or 0

S

Scates

Please help...I am working on a project (fees by month) and my boss
wants all the numbers to either end in 0 or 5...How can this be done.
 
P

Peo Sjoblom

One way

=ROUND(A1/5,0)*5


where A1 holds the number will round to the nearest 5
 
F

Frank Kabel

Hi

create a new helper column "B" and insert the following formula
(assuming that your numbers a stored in column A):
=MOD (A1;5)
and copy this formula for all rows

After this you can sort all rows with the result '0'. These are all
numbers ending with either '0' or '5'.

Frank
 

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

Top