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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
A less disgusting formula to compare two DateTime fields?
I have a saved search with a criteria to compare two datetime fields ("Is field A after field B?"). The only way I know to do this is to use date arithmetic with a Formula(numeric) criteria, something like this:
{custrecord_plp_project_id.lastmodified} - {custentity_nv_projorpricinglastupdated} greater than 0If those were Date fields it would work fine, but with DateTime fields it throws
:h_a_w:Unexpected Error
As a workaround I'm converting to string with a known format, then parsing back with the same format and then doing the comparison.
to_date(to_char({custrecord_plp_project_id.lastmodified}, 'mm/dd/yyyy hh24:mi:ss'), 'mm/dd/yyyy hh24:mi:ss') - to_date(to_char({custentity_nv_projorpricinglastupdated}, 'mm/dd/yyyy hh24:mi:ss'), 'mm/dd/yyyy hh24:mi:ss') Steve Klett | Senior Developer
NetValue Technology
0