Filter Kanban "Completion" or "Closed" Date

Justin Anderson
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
October 5, 2023

Good morning, I would like to filter my Kanban Issues by the date an issue was placed into "Completed," "Closed," or "Cancelled". I am trying to only display and export data that started on 01 October 2023. Any ideas? Thank you,

 

-Justin

1 answer

0 votes
Tim C
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 5, 2023

Hi @Justin Anderson 

Assuming your workflows are properly setting the "resolution" field when ticket transitions to "completed/closed/cancelled" status ... then you can use "resolved" to query against dates ...

If you're only after those resolved on 01-Oct ...

resolved >= "2023-10-01" and resolved < "2023-10-02"

If you're only after those created on 01-Oct ...

created >= "2023-10-01" and created < "2023-10-02"

If you want those created and closed on 01-Oct ...

created >= "2023-10-01" and created < "2023-10-02" and resolved >= "2023-10-01" and resolved < "2023-10-02"

I hope this helps?

Thanks

TC.

Suggest an answer

Log in or Sign up to answer