How to get a list of stories where the PO Workflow filed is set to “Ready For Sizing”?
It would be great if it can run across all projects including Developer, Cebu Development Team, and Davao Development Team or other projects.
This will be used for the sizing meeting and for developers to review.
Thank you.
Hi Jess,
Unless I am missing something, this can be a filter like:
”PO Workflow” = “Ready for Sizing”
Hi John. Good day! Thanks for your reply. I appreciate it. Is this fine below:
Please let me know.
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jess, along with @John Funk jql statement, if you want to include a project or filter out projects or include them then you would include this along with John's jql above.
single project
AND project = Developer
multiple projects
AND project in ("Developer", "Cebu Development Team", "Davao Development Team")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Craig. Good day! Thanks for your reply. I appreciate it. I have a question regarding multiple projects. How can I run across all projects? See sample screenshot below as I tried to use multiple project jql statement:
That screenshot is under Desktop Support project.
Please let me know.
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
just get rid of the AND statement at the beginning. that AND is if you are searching for something prior to the project like this
”PO Workflow” = “Ready for Sizing” AND project in ("Developer", "Cebu Development Team", "Davao Development Team")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or the other way
project in ("Developer", "Cebu Development Team", "Davao Development Team") AND ”PO Workflow” = “Ready for Sizing”
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.