Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Simple Formula Field / Issues
Issue #1
I am trying to complete what I thought would be a very simple task. Basically, I am running an Inventory Report for a customer that they will then upload into their system. Due to constraints on their end, I need to populate blank fields with a 0. That is, if an item is not in stock and is blank, I need it to say 0 instead.
I did a Formula (numeric) field in my Item Search:
CASE WHEN {quantityavailable}is null THEN '0' ELSE {quantityavailable} END
I keep getting an error citing ERROR:Invalid Expression.
What am I doing wrong!?
0