Dear All,
My client want to know in the Dashboard total number Fix version in Sprint 6 and total Number of User stories having fix version where status is "Closed" or "Done" or "Deployed in Prod" .
Can any one please help me how can I get it and which widget should I use or use Query.
Thanks & Regards,
Siddiq.
Hi @siddiq mohammad ,
You can create a dashboard in Jira to show the information your client need see my explanation below :
JQL Queries : and here you need to create two JQL
First one : total fix Versions in sprint 6 ,
This query will count the distinct fix versions associated with issues in Sprint 6.
like this one :
project = <your_project_key> AND fixVersion in openSprints(rapidView=<your_rapid_view_id>)
the second query : User Storeis with fix version , This query will count user stories with a fix version where the status is “Closed,” “Done,” or “Deployed in Prod.”
project = <your_project_key> AND fixVersion is not EMPTY AND issuetype = "Story"
AND (status = "Closed" OR status = "Done" OR status = "Deployed in Prod")
Now how to create a dashboard :
Go to your Jira dashboard. - > Click “Create Dashboard” or edit an existing one. -> Add two new “JQL Filter” gadgets.
Now how configuring the Gadgets:
For each gadget, paste the corresponding JQL query (one for each) in the “JQL filter” field.
Hope this helps :)
Regards
Oday
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.