if, and, or "or" statement

  • Thread starter Thread starter matmich
  • Start date Start date
M

matmich

I have a number in A1 and in A2 I need to display a Y if a1 is greate
than 84 and less than or equal to 108. Its simple I know but I am no
getting it. What formula would I use?
 
Hi

=IF(AND(A1>84,A1<=108),"Y","N")

that's if you want a "N" if it isn't, otherwise, just omit the N

Cheers
JulieD
 
Sometimes its the simple ones that drive us nuts :)

=if(or(a1>84,a1<=108),"Y","N")
 

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

Similar Threads


Back
Top