Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

I am looking out to filter my data based on the date it was assigned to a member. But I cannot see assigned date option available. Can we have that?

 

3 comments

Ravi Sagar _Sparxsys_
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.
Feb 07, 2022

Hi @Charu Singhal 

Assignment date is available in the issue history but filtering issue based on assignment date is a bit tricky.

Try this JQL.

assignee changed ON '2022/02/07' TO 12345:sdfsdf99w79wee7r-werwerwewe

Where last part is the account id, which you can find my just doing assignee=... and use the username from the autocomplete.

If you want to report on assignee date then either fetch it from issue history and export it somewhere or use automation rule to write assignee date to a date/time field when assignee is changed.

I hope it helps.

Ravi

Like Andrzej Pilichowski likes this
Yuliia_Borivets__SaaSJet_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Feb 07, 2022 • edited

Hi @Charu Singhal 

This JQL should work for you:

assignee changed ON '2022-02-07'

Another option I can suggest is the Issue History app developed by my team. Here you can filter by assignee, project, sprint, etc., and choose the date range you need. 

history of assignee changes.png

Let me know if you have any questions.

Hi @Charu Singhal

I use the below filter to display new tasks assigned to me (in the last week) on my personal dashboard:

assignee in (currentUser()) AND assignee changed after startOfWeek() 

This may serve you if you don't want to have to edit the date manually each time you run the query. You can also use startOfMonth() or startOfYear().

Comment

Log in or Sign up to comment