IF function - Boleen logic

  • Thread starter Thread starter Greg
  • Start date Start date
G

Greg

Is there a was to use the Boleen logic within the IF
function as comibation of IF & AND for an inital
criteria. For example: IF(x<=0 and y>1, then ... etc...
Please Help!
Thanks in advance.
Greg
 
You can incorporate the logical functions into an IF function. For example:

=IF(AND(A1=1,B1=2),TRUE,FALSE)

HTH

--
Michael J. Malinsky
Pittsburgh, PA

"I was gratified to be able to answer promptly,
and I did. I said I didn't know." -- Mark Twain
 
Hi Greg

try
=IF(AND(x<=0,y>1),true,false)

and if you want an OR statement
=IF(OR(x<=0,y>1),true,false)

cheers
JulieD
 
Thanks Julie!!!


-----Original Message-----
Hi Greg

try
=IF(AND(x<=0,y>1),true,false)

and if you want an OR statement
=IF(OR(x<=0,y>1),true,false)

cheers
JulieD




.
 
Back
Top