False Value removal

Closed
Jumita - Aug 9, 2019 at 06:39 AM
 Blocked Profile - Aug 9, 2019 at 07:10 AM
Hello,

How to remove false value if I use below formula



=IF($K4="Urban",IF(N4>0,1,0))

1 response

Blocked Profile
Aug 9, 2019 at 07:10 AM
You define the false value.

The syntax for if is:
=if (logic-test, true, false)

If you look at your formula, ypu have not defined the false value. It should be

=IF($K4="Urban",IF(N4>0,1,0),"this is your false value")


Have fun!
0