https://netsuiteprofessionals.com logo
Title
j

Joseph

08/24/2020, 5:54 PM
if i want to find all my orders that were created after 3PM in a saved search, how would i do that?
m

M Duncan

08/24/2020, 6:02 PM
Something like this in a transaction search criteria: case when to_char({datecreated}, 'HH24') >= 15 then 1 else 0 end
j

Joseph

08/24/2020, 6:43 PM
awesome thank you