Saved search criteria by time only - trying to cre...
# general
g
Saved search criteria by time only - trying to create a search to see transactions created between a set time every day i.e 15:00 to 16:00 pm every day for two weeks (not whole two weeks duration) how can I restrict my results for this? To be clear it is to see transactions created between that timeframe and not date range
s
I did something similar in SuiteQL - a quick adaptation to a saved search seems to be working. Add a Date Created filter for the last two weeks and then a separate filter on Formula (Text) = T where the formula is: CASE WHEN TO_CHAR({datecreated}, 'HH24MISS') > '150000' AND TO_CHAR({datecreated}, 'HH24MISS') < '160000' THEN 'T' ELSE 'F' END
g
Thanks @Stephanie Hughes... like this? don't seem to be getting any results?
s
you seem to be missing the comparison part
🙌 1