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.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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