Hi everyone,
I am trying to create a filter that will pull only the orders closed last week from Monday through Sunday.
Any ideas? I can't seem to find anything that works. I have been playing with the week of year function but can not seem to pull anything together.
Thank you for any support offered.
TraSmith
[Order Close Date] between _add_days (current_date, -6 - _day_of_week (current_date, 1)) and _add_days (current_date, - _day_of_week (current_date, 1))
This worked. Thank you.