You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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?
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.
Let me know if you have any questions.
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().