if i want to find all my orders that were created ...
# general
j
if i want to find all my orders that were created after 3PM in a saved search, how would i do that?
m
Something like this in a transaction search criteria: case when to_char({datecreated}, 'HH24') >= 15 then 1 else 0 end
j
awesome thank you