I would like to know the list of open issues in Jira Cloud
Hi Raha,
Are you talking about open issues for Atlassian to fix?
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.
Hi @Radha Tankala ,
To view a list of all open issues in your Jira Cloud instance, you can use the JQL
status != Closed
this JQL will display all issues that are not in a "Closed" status, which includes all open issues across all projects in your Jira Cloud instance.
If you want to view open issues in a specific project, you can modify the filter to include the project key, like
project = PROJECTKEY AND status != Closed
Regards,
Bhushan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It depends on what you mean by "Open Issue"
If we factor the issue by resolution
You could do a JQL search as below
project = project-key AND resolution = unresolved
You could also search Open issues by status
project = project-key AND status in ("To Do", "In Progress")
Thanks,
Pramodh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would like to know the open issues related to "JIRA Cloud Software" and not related to my project
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.