If statement please help

  • Thread starter Thread starter drreamsurfer
  • Start date Start date
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
 
One way:

L1: =IF(K1,N1,0)

another:

L1: =N1*K1

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

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

Similar Threads


Back
Top