formula/macro?

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> How to do the following conditional:
>
> if h2 > 30 and h2 < 60
Format>Conditional formatting>Cell value is>between>30>60 assuming 30 and 60
need to satisfy the condition. The set the format you want.

Signature
Ian
--
> How to do the following conditional:
>
> if h2 > 30 and h2 < 60
=IF(H2>30,IF(H2<60,"TRUE","FALSE"),"FALSE")
Tom,
Your question is vague, but here's something:
=IF( AND(H2>30, H2<60), "It's between 30 and 60", "It ain't" )

Signature
Earl Kiosterud
www.smokeylake.com
Note: Top-posting has been the norm here.
Some folks prefer bottom-posting.
But if you bottom-post to a reply that's
already top-posted, the thread gets messy.
When in Rome...
-----------------------------------------------------------------------
> How to do the following conditional:
>
> if h2 > 30 and h2 < 60