You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I'm pulling data from our Jira cloud instance and would like to filter my results to software project types only (i.e., not 'business' or 'service_desk').
Using Jira Cloud for Sheets, the following returns an error:
=jira("updated>=2023-09-01 AND project.projectTypeKey='software'"
, "Summary,issuekey"
,0
,10)
Error: "Field 'projectTypeKey' does not exist or you do not have permission to view it."
(I get the same error in Jira proper when I use a JQL search.)
BUT, the following returns happily:
=jira("updated>=2023-09-01"
, "Summary,issuekey,project.projectTypeKey"
,0
,10)
So I know it's not a permissions issue.
Can someone help me with the syntax for this?
Try using this:
projectType = software
It worked for me in a JQL search. Hope this helps!
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.