Hi
How to write JQL to pull issues with due>= last Friday and due<= this Friday?
We don't want to use dates as JQL needs to be manually updated every week.
i tried due>= startofweek(-5d) and due<= endofweek(-5d) but this gives a different set of issues compared to jql used with dates like due>=2018-10-12 and due<=2018-10-18
Any suggestions?
Thanks
Hi @KRC,
I think your approach is right, but why do you use -5d in both cases.
Here in Germany, where startofWeek would be considered monday, I think this should give the right result:
due >= startOfWeek(-3d) and due<=startOfWeek(4d)
Hello,
startofweek begins from Monday for Europe and from Sunday for USA. That is why it should be
due>= startofweek(-3d) and due<= endofweek(-2d)
or
due>= startofweek(-2d) and due<= endofweek(-1d)
depending on your settings.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @Bastian Stehmann@Alexey Matveev for your response.
startOfweek - Monday works best for us. Both of your queries worked.
Thanks again
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.