Hi,
I created a few widgets that are filtering weekly and I would like to automate the filter to update by its self instead of having to do it manually. Any thoughts?
Welcome to the community!
Would you mind taking a screen shot of the filter, as I believe you should be able to use the inbuilt functions of JQL, such as startofweek(-1).
created >= startOfWeek(-1) order by created DESC
Cheers
Mark
createdDate < endOfWeek(-1) AND createdDate >= startOfWeek(-1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mark Higgins thanks for the warm welcome. I would like the query to update by itself without manually having to do so....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I may be missing something here, but as time goes on, doesn't your query move with it?
So, you would like all the tickets from the 2nd last week, and then the last week.
That would indicate you would want the startofweek(-2) and then startofweek(-1)?
Pls feel free to tell me otherwise?
Cheers
Mark
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.