IF Statements

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

I know this can be done I've just forgotten;

basically I want to say "IF(cell refrences is less than
or equal to x, then return z, if it's less than y but
greater than x, then retun zz, if it is greater than y,
then return zzz).

Thanks in advance!
 
Frank,

IF(A2<=x, z, IF(A2<y, zz, zzz))

You don't say about the case of A2 = y. YOu may have to use <= instead of
<.
 
Thanks!
-----Original Message-----
Frank,

IF(A2<=x, z, IF(A2<y, zz, zzz))

You don't say about the case of A2 = y. YOu may have to use <= instead of
<.

--
Earl Kiosterud
mvpearl omitthisword at verizon period net
-------------------------------------------




.
 

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

Back
Top