This is all new to me and I'm not 100% comfortable with queries. What I want is:
For a specific project
Show all overdue tasks AND
Show all tasks who don't have an assigned due date.
I can do this: Project=CDM and duedate <now()
And it captures due and overdue tasks
But if I add the "is not empty" to the query it returns ALL issues, not project specific. This is what I had:
Project=CDM and duedate <now() or duedate is EMPTY
Any help is appreciated! Thanks.
Try this:
Project=CDM and ( duedate <now() or duedate is EMPTY )
Thanks so much... I was using OR not AND as I stated above but I was misisng the "( )". It works perfect!
Thanks for the quick answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Jobin. maybe you could help also me
sometimes user dont set up due date for issues but they are in sprint which has got due date. can I prepare that kind of query which could show me overdue tasks in context of sprint due date when task duedate is empty? could you help me to creat that kind of quesry?
the same for issues ontime bu I assume that will be easy having previous one :)
thx for helping !
Kasia
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks so much... I was using OR not AND as I stated above but I was misisng the "( )". It works perfect!
Thanks for the quick answer.
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.