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!
Workflow Condition Custom Formula for Comparing Dates
Hi all. I'm setting up a workflow to set the status of a Case record based on the date entered in certain field. The use case is this:
- A user enters a date in a custom field "Date of Sale"
- If the value in the case record's "Date Created" is greater than "Date of Sale" + 2 years, the Case status is set to "Out of Warranty"
- If the value in "Date Created" is less than or equal to "Date of Sale" + 2 years, no change is made.
My workflow triggers After Field Edit of "Date of Sale" with the condition formula {startdate} > ADD_MONTHS({custevent_dateofsale}, 24)
0