IF STATEMENT WITH OR

  • Thread starter Thread starter jojik
  • Start date Start date
J

jojik

Hello friends,
I have 1 spreadsheet showing the following data:
A B C
UP(INR) UP(USD) CODE
1000 3750 ??

I need to get the CODE as 'RELEASED' if col A is <=1001 or col B is <=3751.
Actually either col A or col B will be filled one time.
thankyou very much in advance...
joji
 
With values in A1 and B1 and formula in C1

=IF(OR(AND(A1>0,A1<=1001),AND(B1>0,B1<=3751)),"Release","")

the two conditions listed below

AND(A1>0,A1<=1001)
AND(B1>0,B1<=3751)

If this post helps click Yes
 
Hi,

Try this

=IF(OR(AND(A2<>"",A2<=1001),AND(B2<>"",B2<=3751)),"Released","")

Mike
 

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