Hi
I'm trying to build a dashboard which users can view the following data
I've already built some data using the apps that are available but none of them quite hit the mark
any help would be greatly appreciated
Jason
Hi @Jason Desir
It's Mary from Planyway for Jira: roadmap, workload, time tracking.
Although third-party apps can enhance these capabilities, I'll guide you through achieving this with JIRA's native functionalities first.
For projects, since JIRA primarily focuses on issues, you might need to creatively use JIRA issues to represent or track your projects' progress and due dates.
Approach: Use a JQL query to identify issues representing projects due for completion within your specified timeframe. Then, use a gadget like the "Filter Results" gadget to display this information on your dashboard.
project in (PROJECTKEY) AND issuetype = "Project" AND due >= startOfDay() AND due <= endOfDay("+30d")
This query assumes you have an issue type called "Project" or a similar setup. Adjust the project key and time frame as needed.
To track the number of tickets completed, you can use the "Filter Results" gadget or the "Pie Chart" gadget to visualize the status of issues.
Approach: Use a JQL query to filter issues that have been completed within a specific period.
status = Done AND resolved >= startOfDay("-30d") AND resolved <= endOfDay()
This shows tickets marked as Done in the last 30 days.
This requires a bit of creativity since JIRA doesn't directly store the number of estimated days in a simple field for comparison. You'll need to use the "Original Time Estimate" or "Time Tracking" fields.
Approach: If you're using time estimates, you can try to filter issues based on the original time estimate exceeding a certain threshold (e.g., X hours, since JIRA time estimates are in seconds).
project = PROJECTKEY AND originalEstimate > "Xh"
Replace PROJECTKEY
with your project's key and Xh
with the threshold of hours that equates to your X number of days (e.g., "40h" for 5 days, assuming an 8-hour workday).
Thank you very much Mary from Planyway for Jira: roadmap, workload, time tracking., most appreciated
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Jason Desir
Welcome to the Atlassian community.
Tell us more details about what you have tried and how it has not met your needs.
Are you open to using third party apps to meet your requirement?
One point of clarification: The Jira term "Project" is an entity that is a container for "issues" (or "tickets"). A Project doesn't have a completion date. Only issues/tickets have dates, under native Jira functionality. Can you clarify what you are trying to get at with that first bullet item?
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.