Excel formular

L

Linda

I need help with a simple question: what is the formular for not equal to 0?
I need to have a formular for =IF(A1:E1 not equal to 0,F2+1,0). Please
help.

Thank you,
Linda
 
D

D.

I need help with a simple question: what is the formular for not equal to 0?
I need to have a formular for =IF(A1:E1 not equal to 0,F2+1,0). Please
help.

Thank you,
Linda

=if(A1<>0,F2+1,0)
 
M

MartinW

It's not really clear what you are trying to do.
Are you testing for no zero value in any of the cells A1 to E1

Maybe this,
=IF(COUNTIF(A1:E1,"0")>0,F2+1,0)

HTH
Martin
 
Top