try this
=if(a1>571,3,if(a1>521,2,if(a1>0,1,"")))

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> Hello,
>
[quoted text clipped - 12 lines]
>
> John
Sandy Mann - 29 Jul 2007 18:32 GMT
I think the Don intended:
=if(a1>570,3,if(a1>520,2,if(a1>0,1,"")))
or
=if(a1>=571,3,if(a1>=521,2,if(a1>=0,1,"")))

Signature
Regards,
Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings
sandymann2@mailinator.com
Replace @mailinator.com with @tiscali.co.uk
> try this
>
[quoted text clipped - 16 lines]
>>
>> John
One more method........
=LOOKUP(A1,{0,521,571},{"Option 1","Option 2","Option 3"})
I assumed you meant >570 for Option 3
Gord Dibben MS Excel MVP
>Hello,
>
[quoted text clipped - 12 lines]
>
>John
John C - 29 Jul 2007 20:08 GMT
> I assumed you meant >570 for Option 3
Yep I did and that works great.
> =LOOKUP(A1,{0,521,571},{"Option 1","Option 2","Option 3"})
Thank you