Hello
I'm using Jira Cloud for Sheets (in Google Sheets), and I'm striving to retrieve issues from several projects in parallel.
Ex: in order to retrieve issues from ProjectA, I would run for example:
=JIRA("project=ProjectA AND status=""DONE""", “issuekey, summary, status, assignee.emailAddress, labels, mycustomfield”)
Now what if I would like to retrieve issues from both ProjectA and ProjectB?
Thanks in advance for your precious expertise!
Hi
I understand that you are using Jira Cloud for Sheets app, and want to be able to pull issues from two projects in the same query. You could do this in two different ways:
=JIRA("(project=ProjectA OR project=ProjectB) AND status=DONE", "issuekey, summary, status, assignee.emailAddress, labels, mycustomfield")
or
=JIRA("project in (ProjectA, ProjectB) AND status=DONE", "issuekey, summary, status, assignee.emailAddress, labels, mycustomfield")
Either way, both are valid JQL in order to pull these issues into the google sheet using the =Jira() function.
Let me know if that helps.
Andy
Hi Andy,
Thank you so much, it works perfectly!
Best
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.