Austin Couture
09/04/2024, 4:22 PMCeligo AI
09/04/2024, 4:22 PMAI 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:
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.
******Celigo AI
09/04/2024, 4:23 PMSlack 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
Celigo AI
09/04/2024, 4:23 PMAustin Couture
09/04/2024, 4:42 PM