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!
Update your Profile with your Support type to get your Support Type badge.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Don't miss out on our Question of the Week! You only have until tomorrow, November 13, 2025, 2PM ET to comment your answers and earn rewards! Click here for more details.
Uncover the power of data with the Analytics Hub —your ultimate guide to mastering NetSuite Saved Searches and Reports. Simplify the complex and unlock your organization's true potential. Dive into the Analytics Hub now and soar to new heights!
To help you get the most out of your 2025.2 Release Preview account, review the topics outlined in the 2025.2 Release Preview Guide.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
How Do I Enforce Entry of Only One of four fields using Workflow?
I have four fields on a form. The User MUST enter data into ONLY one of these 4 fields, but they MUST enter at least one field.
I have tried many different formulas on the Action Condition, but I cannot make it work.
Here's an example using just 2 of the fields:
((nlapiGetFieldValue('custrecord_rb_all_items') == "F")?0:1 + (nlapiGetFieldValue('custrecord_rb_manuf_division').toString().length == 0)?0:1) != 1 The first field is a Checkbox (T/F), and the 2nd is a List/Record type.I'm not sure how to test for the field being empty (null).
The approach I was trying to use is to test each field, and if something has been entered, set the result to 1, and then sum all of these expressions.
0