The filter should not give me dates past next week
due <= 7d
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Glen,
in addition I would suggest to extend the proposed JQL to make sure you only see issues due within the next seven days from now on.
due <= 7d AND due >= now()
Another perspective could be that "due next week" doesn't mean the next seven days but literally next week. This can be accomplished with these advanced JQL functions natively (no add-on required).
due <= endOfWeek("+1w") AND due >= startOfWeek("+1w")
More about advanced JQL is documented here: Advanced search reference - JQL functions
Cheers,
Tobias
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.