I need to create a filter that will show me only issues where the scheduled date is Monday for the current week.
Tried this, but it show nothing:
project = project AND issuetype = Release AND "Scheduled Date/Time" = startOfWeek(1d)
Only shows issues if I use Scheduled Date/Time" >= startOfWeek(1d) but that shows all issues from Monday onwards.
Hello,
The problem is that startOfWeek returns you a date with 00:00 time. And you do not have such issues. The correct way would be:
"Scheduled Date/Time" >= startOfWeek(1d) and "Scheduled Date/Time" < startOfWeek(2d)
Thank you :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
If you feel like I answered your question, kindly mark my answer as accepted.
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.