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.
SQL Expression Comparing Dates
Anyone-
In a custom search, I am trying to compare today's date minus the greater of two dates located in custom date fields to see if this number is greater than 30. An example of the sql expression I am using:
CASE WHEN ({today}-(CASE WHEN {date1} > {date2} THEN {date1} ELSe {date2} END)) < 30 THEN 1 ELSE 0 END
This works properly, except when one of the custom date fields equals NULL, then I receive a zero which isn't always the true result (the null automatically returns a zero). I tried to do the following to fix this:
1) use NULLIF ({date1},0) - I receive an error message for this.
0