Netsuite Formula - "blank" or "null" field

user2793912 picture user2793912 · Sep 19, 2013 · Viewed 13.2k times · Source

I'm trying to use a formula to get a field populated with the word "false" in NetSuite, but currently when I use this I get nothing showing up. If I modify it slightly to say "null" or "blank" or leave it as just a space, it returns an error.

The code I'm using is

CASE WHEN {custitem_upc_number} = 'null' THEN 'FALSE' END

Answer

Nitish picture Nitish · Sep 19, 2013

Try

CASE WHEN {custitem_upc_number} is NULL THEN 'FALSE' END