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
Try
CASE WHEN {custitem_upc_number} is NULL THEN 'FALSE' END