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.
Please note that on Saturday, April 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
After Field Edit date calculation workflow
Hi, I'm working on a workflow that would calculate Expected Receipt Date as Ship Date (custom line field) + 14 days. I created a single state workflow with After Field Edit triggered action using a formula to establish the value. If I simply put {line.custcol_line_shipdate} in the formula field, the value is being copied 1:1 as soon as enter the date - perfect. However, I can't seem to get any calculations working. So far I tried the following:
{line.custcol_line_shipdate} + 14
{line.custcol_line_shipdate} + INTERVAL '14' DAY
to_date({line.custcol_line_shipdate} + INTERVAL '14' DAY)
0