I want to filter by Project but ALSO by Issue Type (Feature, Bug, etc..). How can I do that using Time in Status? I can't seem to find the additional Issue Type filter. Basically, I want to see how much time was spent in status for only my Features in a certain Project and exclude the other Issue types.
Not a Time in Status answer here, but have you tried using Jira's built in Control Chart with quick filters for each type of interest? Sure you have to hover and click through to the tickets sometimes to gain additional insight, but as an overview it is a very powerful graphic.
Hello Natalie Mason,
I hope you're having a great day!
Here is the query you can use:
project = Abc AND issuetype IN ("AB", "DC") AND timespent IS NOT EMPTY
I hope this helps. Let me know if you need any further assistance.
Thanks
Hi @Natalie Mason
Welcome to the Community!
Yes, it is possible in Time in Status add-on.
For this just filter by JQL.
For example:
issuetype = Bug and project = "SLA & CT Line"
or issuetype in (Story, Bug)
Hope it helps 😊