If statement please help

D

drreamsurfer

I need help, what would this statement need to look like if I want th
following info:

Column L must equal column N only if column K=TRUE if column K=FALS
then column L must equal 0.

Thanks in advance

Linse
 
J

JE McGimpsey

One way:

L1: =IF(K1,N1,0)

another:

L1: =N1*K1

(TRUE is coerced to 1 in math operations, FALSE is coerced to 0)
 
Top