I need a netsuite saved search formula for a start...
# ask-stanley-ai
a
I need a netsuite saved search formula for a start date where the start date is on the second day of this month. What's my formula?
c
AI generated answer (using internal Slack threads):
To create a NetSuite saved search formula for a start date where the start date is on the second day of this month, you can use a formula (date) field type with the following formula:
Copy code
CASE WHEN TO_CHAR({startdate}, 'DD') = '02' AND TO_CHAR({startdate}, 'MM') = TO_CHAR(SYSDATE, 'MM') THEN 1 ELSE 0 END
This formula checks if the day of the start date is the second day and if the month of the start date is the current month. If both conditions are met, it returns 1, otherwise, it returns 0. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.85496819
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.851157129
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.849717617
Please provide your feedback on this answer.
a
This was very close. I had to use the Formula (Numeric) filter