I'm currently using:
project = ABCD AND reporter = "firstname.lastname1" OR reporter ="firstname.lastname1" AND created = "-1w"
however it's showing me info up to 3-4 weeks ago.
Confirmed: to get tickets created within the last hour and unassigned I used
assignee is EMPTY and created >= "-1h"
How about this?
project = ABCD AND reporter = "firstname.lastname1" AND created >= "-1w"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = ABCD AND created =
"-1w" --- this one works
project = ABCD AND reporter = "firstname.lastname1" AND created >= "-1w" --- this one works
If I try to put 2 reporters in that seems to kill it. how can I have it check for 2 reporters?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try with brackets.
project = ABCD AND (reporter = "firstname.lastname1" OR reporter ="firstname.lastname1") AND created = "-1w"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The problem must be in the reporter name. You should use the username instead of firstname.lastname format. Try just this and see if you get any results:
project = ABCD AND created = "-1w"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.