Using as a search string the last Friday to current or coming Friday?
Not wanting to use last 7days (project = SEC AND created >= -7d ) need to use calendar friday to friday.
thanks in advance
how about something like:
created >= endOfWeek(-1) AND created <= endOfWeek() ORDER BY created ASC
There's also the startOfWeek JQL that will get you the Monday, likely dependent on how you have Jira setup.
Thanks were able to use the date by, thanks to Norman Weekes
project = NNAME AND created >= "2018-09-14" AND created <= "2018-09-21"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome, one way has a static date and the other has a dynamic that you can save as query and dashboard.
Either way works though ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can also do:
project = SEC AND created >= "2018-09-14" AND created <= "2018-09-21"
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.