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.
SuiteWorld | October 25–28, 2026 | Las Vegas Where our community gets ready for what’s next!
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
Formula Help - Date of Last Customer Order
Can anyone tell me what is wrong with this formula? It comes from an example in Suite Answers. I am trying to search for all customers who have not placed an order in the last year (I would actually like all parent customers with no activity but that really has me stumped).
CASE WHEN ({today} - {lastorderdate} > 360) THEN 'T' ELSE ({today}-{lastsaledate} > 360) THEN 'T' ELSE Case WHEN (({lastsaledate} is null) and ({lastorderdate} is null)) THEN 'T' ELSE ‘F’ END END END
This is the error message I get.
"Your formula has an error in it. It could resolve to the wrong datatype, use an unknown function, or have a syntax error. Please go back, correct the formula, and re-submit."
0