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.
Using Expressions in Search
I am trying to build a search that shows two project tasks dependent on status. What I'm trying to show is:
Task A is Completed AND Task B is Not Started
I do not want to show any combination that does not match those details. So, in the criteria, I built:
((Task Name is Task A AND Status is Completed) OR (Task Name is Task B AND Status is Not Started))
NOT ((Task Name is Task A AND Status is Not Started) OR (Task Name is Task B AND Status is Not Started))
NOT ((Task Name is Task A AND Status is Completed) OR (Task Name is Task B AND Status is Completed))
0