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

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,045
Community Members
 
Community Events
184
Community Groups

Need filtre to show all my task exept the one that are done for more than 1 week

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  

  • SEE 
    • Everything that is assigne to me
      • ->assignee = currentUser()
    • Everything that I have created
      • -> reporter = currentUser()
    • Everything in which my name appears (descrition, coment, ...)
      • -> comment ~ currentUser() OR description ~ currentUser() OR summary ~ currentUser() OR text ~ currentUser() 
    • Everything from all project
      • -> project in (Proj1, Proj2, Proj3, ...)
  • NOT SEE
    • Everything that is DONE for more than 1 week
      • -> status = Done AND updated < -1w

 

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 ? 

2 answers

0 votes
Liam Green
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.
Dec 10, 2020

Hi @Gaetan Gaston 

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

0 votes
Brant Schroeder
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 10, 2020

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.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events