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.
Hi there,
I am a project manager and need to optimize Jira for our employee.
Situation: We are working on different PROJECT, and in each project we're using EPIC and TASK. We have a Kanban-board that show a global view.
Objectif : Develop a board so that each employee can quickly view only his/her task
Filtre : I started to create a filtre so that I can
Both part (SEE and NOT SEE) works good separatly but my issue is to link the 2
Created filter (not working) :
project in (Proj1, Proj2, Proj3, ...) AND ( assignee = currentUser() OR reporter = currentUser() OR comment ~ currentUser() OR description ~ currentUser() OR summary ~ currentUser() OR text ~ currentUser() ) NOT (status =Done AND updated < -1w)
How can I do it ?
Welcome to the Community!
Try the following please:
project in (proj1, proj2, proj3, ...) AND (assignee = currentUser() OR reporter = currentUser() OR comment ~ currentUser() OR description ~ currentUser() OR summary ~ currentUser() OR text ~ currentUser()) AND (status != Done OR updated < startOfDay("-7"))
That worked for me.
Regards, Liam
You can use this: ( assignee = currentUser() OR reporter = currentUser() OR comment ~ currentUser() OR description ~ currentUser() OR summary ~ currentUser() OR text ~ currentUser() ) AND NOT resolved <= -1w
I took off project since you want it to show every project.
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.