I would like a filter that shows me all tasks that are open AND where the status has changed to Done within the last 2 weeks. Older tasks should not appear.
Hi Astrid,
Try this:
project = ABC and status changed to Done after startOfDay(-14)
Or you can use startOfWeek(-2)
It seems like that only gives me the tasks where the status has changed within 2 weeks. Is there a way to get BOTH open tasks AND marked as done within 2 weeks in the same filter?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So sorry - I missed the part about wanting open tasks, too.
project = ABC and (status changed to Done after startOfDay(-14) or statusCategory != Done)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe that solved my problems! Thanks a lot for your help and fast reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.