Rounding up Formula

M

milsupport

I am trying to round currency figures up and down to the nearest
5pence/10pence etc etc How do I round up to these. What is the formula
I need to use. Please Help!!
 
B

Bob Phillips

=ROUND(A1/5,0)*5
=ROUND(A1,-1)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
G

Guest

for eg

if you have an amount as $123,14, and you would like to round to $123,10

just =round(123,14,1)

regards

"milsupport" escreveu:
 
M

milsupport

Ok still not sure and cant get it to work, for example I have (Startin
in A1)

11.47
15.59
14.44

Wanting to round up to teh nearest 5 PENCE

To read in B1 etc

11.50
15.60
14.45

And so on

Cant get my head round it

Regards
 
B

Bob Phillips

=ROUND(A1*20,0)/20

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
B

Bob Phillips

I was being pedantic Bernd <g>. Following the actual logic of the process.
Need to step back.

I think your second version is the best, it easily translates to other
thresholds.

--
HTH

Bob Phillips

(replace somewhere in 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

Top