#1   Report Post  
Posted to microsoft.public.excel.misc
Graham Aird
 
Posts: n/a
Default Rounding

I have a long list of £ prices. I want to round anything under £10.00 to the
nearest 10p (easy) I want to round anything over £50 to the nearest £1 (easy
again) but I need to round anything £10 and <£50 to the nearest (up or
down) to the nearest £0.50p.

Any Ideas? I've tried mROUND but can't get it to work!

Thanks in advance.

G




  #2   Report Post  
Posted to microsoft.public.excel.misc
Ian
 
Posts: n/a
Default Rounding

First thought, not necessarily correct. Multiply the amount by 2, round to
the nearest £1 then divide by 2.

--
Ian
--
"Graham Aird" wrote in message
...
I have a long list of £ prices. I want to round anything under £10.00 to
the
nearest 10p (easy) I want to round anything over £50 to the nearest £1
(easy
again) but I need to round anything £10 and <£50 to the nearest (up or
down) to the nearest £0.50p.

Any Ideas? I've tried mROUND but can't get it to work!

Thanks in advance.

G






  #3   Report Post  
Posted to microsoft.public.excel.misc
Graham Aird
 
Posts: n/a
Default Rounding

Sounds good, any help on the formular?

It currently stands at!

if(l38<10,round(l38,1)if(l3810<50,mround(l38,0.5) ,if(l3850,round(l38,-1),L38)))

You might have and easy way for it all!

Thanks

"Ian" wrote:

First thought, not necessarily correct. Multiply the amount by 2, round to
the nearest £1 then divide by 2.

--
Ian
--
"Graham Aird" wrote in message
...
I have a long list of £ prices. I want to round anything under £10.00 to
the
nearest 10p (easy) I want to round anything over £50 to the nearest £1
(easy
again) but I need to round anything £10 and <£50 to the nearest (up or
down) to the nearest £0.50p.

Any Ideas? I've tried mROUND but can't get it to work!

Thanks in advance.

G







  #4   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Rounding

Try

=IF(A1<10,ROUND(A1,1),IF(A1<50,ROUND(A1*2,0)/2,ROUND(A1,0)))

--

HTH

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


"Graham Aird" wrote in message
...
I have a long list of £ prices. I want to round anything under £10.00 to

the
nearest 10p (easy) I want to round anything over £50 to the nearest £1

(easy
again) but I need to round anything £10 and <£50 to the nearest (up or
down) to the nearest £0.50p.

Any Ideas? I've tried mROUND but can't get it to work!

Thanks in advance.

G






  #5   Report Post  
Posted to microsoft.public.excel.misc
Graham Aird
 
Posts: n/a
Default Rounding

Fantastic. Thanks for your speed response.

Good Health to you

"Bob Phillips" wrote:

Try

=IF(A1<10,ROUND(A1,1),IF(A1<50,ROUND(A1*2,0)/2,ROUND(A1,0)))

--

HTH

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


"Graham Aird" wrote in message
...
I have a long list of £ prices. I want to round anything under £10.00 to

the
nearest 10p (easy) I want to round anything over £50 to the nearest £1

(easy
again) but I need to round anything £10 and <£50 to the nearest (up or
down) to the nearest £0.50p.

Any Ideas? I've tried mROUND but can't get it to work!

Thanks in advance.

G







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Unwanted rounding of large number Candyman Excel Worksheet Functions 5 August 18th 05 12:32 AM
Rounding numbers to the nearest 5 or 0 Fieldmedic Excel Worksheet Functions 3 July 17th 05 06:51 AM
Percentage rounding error in charts Tracey Excel Discussion (Misc queries) 4 May 14th 05 04:01 AM
Banker's Rounding - need help! Somecallmejosh Excel Discussion (Misc queries) 3 January 20th 05 09:53 PM
How do I make Excel stop rounding off my numbers that are 16 digi. Aida Excel Discussion (Misc queries) 1 December 6th 04 04:34 PM


All times are GMT +1. The time now is 03:06 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"