I have created a formula using IF,THEN,ELSE but, I now find that my IF
argument needs to refer to two cells.
i.e.
=if(a1<=0,(and)b1<5,0,A1*b1)
Can anyone advise how this can be done
Dave Peterson - 14 Jun 2007 03:57 GMT
=if(and(a1<=0,b1<5),0,A1*b1)
> I have created a formula using IF,THEN,ELSE but, I now find that my IF
> argument needs to refer to two cells.
> i.e.
> =if(a1<=0,(and)b1<5,0,A1*b1)
>
> Can anyone advise how this can be done

Signature
Dave Peterson
Don Guillett - 14 Jun 2007 13:49 GMT
You could have looked in the HELP index for AND

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
>I have created a formula using IF,THEN,ELSE but, I now find that my IF
> argument needs to refer to two cells.
> i.e.
> =if(a1<=0,(and)b1<5,0,A1*b1)
>
> Can anyone advise how this can be done