I want to create filter which shows all the tasks done on current day. Please suggest a way.
Hi @Anjali Kumari ,
Welcome to the Community!
Try this JQL query statusCategory = "Done" AND resolutiondate >= startOfDay()
Instead of Done, there can be any other status, which in your workflow means the task is closed.
Also, suppose you're interested in more advanced reports on time in status, finding bottlenecks to improve team productivity, or better reallocating resources. In that case, I suggest you try using the Time in Status for Jira app.
You can generate a report and analyze the entire path of a task before it reaches the Done status.
This will help you better understand your workflows and gain valuable insights.
My team developed the app. We offer you 30 days of free trial.
I hope you find it useful!
resolutiondate >= startOfDay()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Anjali Kumari and welcome to the Community!
If you can determine a list of statuses that you consider as done, you can use a query like this to compose that list:
status changed to (Done, Closed) after startOfDay()
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.
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.