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.
Formulae in saved searches / entity fields - putting date criteria in a formula
Is it possible to put some kind of date criteria in a formula? I'm new to formulae by the way.
I'm trying to count the number of tasks that have 2 custom checkboxes ticked and summarise the sum of them by the person they were assigned to. I'd like to show a summarised view over the last month and the last year.
Reports would be more ideal for this, but there are issues there as well so I'm looking for a solution with saved searches.
Currently this formula works in seeing if either checkbox is ticked and returns 1.
case when {custevent5}='T' or {custevent17}='T' then 1 end
0