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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello together,
I added an filter to my JIRA that shows me just some tickets. The filter is working fine.
Now I want to extend the Filter for the following: Just show me tickets from the filter that does not have "Activity" is "none".
How can I put ACTIVITY is NONE to my filter:
Project = …. duedate is EMPTY AND assignee = currentuser()
Thank you.
Max
Hi Thomas - Welcome to the Atlassian Community!
Activity is a section on a card and refers to multiple items that happen as a part of the history of a card. Therefore, you will not be able to use it in a JQL.
Instead you might use "updated" if you want to see if anything was updated on the card.
project ="ABC" and updated > startOfDay(-7) and duedate is empty and assignee = currentUser()
This would show issues updated in the past 7 days.
Hello,
Welcome to the community.
Activity is a customfield (select list)? If so, you can do something like this :
project ="ABC" and activity is not empty and duedate is empty and assignee = currentUser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.