Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
How can I calculate the time between 2 date/time fields with different formats?
How can I calculate the time between 2 date/time fields when one looks like this: 11/1/2019 5:46:31 am, and the other looks like this: 11/1/2019 6:52 am. I'm trying to create a saved search that tracks how much time it takes from when an order is placed on our website to when it is created in NetSuite.
The closest I've been able to get with my limited SQL knowledge is this:
TO_CHAR({datecreated}, 'hh.mi')-TO_CHAR({custbody_sfccdatetime},'hh.mi')
Field = Formula (Numeric)
Function = Number as Time
Can you help me with this please? The result is in the format I'm looking for (1:04) but it is inaccurate.