Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

View all past tickets that I have been assigned (set as the assignee)

Parm Gill July 14, 2023

I would like to be able to view all the past tickets from every sprint inside a certain project for which I have been the assignee.

1 answer

1 accepted

1 vote
Answer accepted
Tim Perrault
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.
July 14, 2023

Hi @Parm Gill 

 

You could try something like this

project = XXX AND (assignee = currentUser() OR assignee was in (currentUser()))

 

Switch out xxx for your own project. The assignee = curretUser() will find all the issues that are currently assigned to your user. The assignee was in (currentUser()) will find issues where you were the assignee at one point.

Parm Gill July 14, 2023

thank you, that works nicely, what would I add to the query to be able to see all tickets up till a certain date in the past?

Tim Perrault
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.
July 14, 2023

@Parm Gill 

 

We could use created date.

 

project = XXX AND (assignee = currentUser() OR assignee was in (currentUser())) AND created >= "2022/12/10" 

Valid formats for date fields include: 'yyyy/MM/dd HH:mm', 'yyyy-MM-dd HH:mm', 'yyyy/MM/dd', 'yyyy-MM-dd', or a period format e.g. '-5d', '4w 2d' 

 

So with that last part I am saying grab anything created on Dec 12th, 2022 or later.

Like Parm Gill likes this
Parm Gill July 14, 2023

Thanks!

Like Tim Perrault likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events