We have a weekly meeting on Wednesday. I want to run a report on Tuesday for all tickets that have been closed since the previous meeting. A couple weeks ago, I wrote this:
project = "FISV" AND resolved >= startOfWeek(-4) ORDER BY Resolved
It seemed to work. However, this morning when I checked it, it's showing things closed on June 26th. This is two Wednesday's ago.
How can I create a saved filter that dynamically will show all tasks closed since the previous Wednesday?
For bonus points, why does this one show things closed before the previous week?
Looks like I may have simply been missing the "d".
project = "FISV" AND resolved >= startOfWeek(-4d) ORDER BY Resolved
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.