Below is my current logic. I am trying to filter results to find all requests that have moved from open or reviewing to designing tasks in the last 7 days.
The logic I am currently using is still only finding tasks moved from Open to Designing Tasks.
type = Request AND status changed from "Open" to "Designing Tasks" after -7d AND status != Closed AND status != Withdrawn OR type = Request AND status changed from "Reviewing" to "Designing Tasks" after -7d AND status != Closed AND status != Withdrawn
Without any plugins the best you can make is the use of the operator "was".
Ex:
status was "Reviewing" and status = "Designing Tasks"
I know that isn't the same thing but i hope it can help.
Best regards,
Pedro
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Pedro Felgueiras never mind my logic was correct I just had a dunce moment.
This is the logic I ended up using.
type = Request AND status changed from Open to "Designing Tasks" after -7d AND status != Closed AND status != Withdrawn OR type = Request AND status changed from Reviewing to "Designing Tasks" after -7d AND status != Closed AND status != Withdrawn ORDER BY key ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Pedro Felgueiras never mind my logic was correct I just had a dunce moment.
This is the logic I ended up using.
type = Request AND status changed from Open to "Designing Tasks" after -7d AND status != Closed AND status != Withdrawn OR type = Request AND status changed from Reviewing to "Designing Tasks" after -7d AND status != Closed AND status != Withdrawn ORDER BY key ASC
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.