I want to make a query which return to me all isssues resolved in specifed week of year. For example I want to know howm many issues was reslolved in 12 week of 2014 year.
So I need something like this:
firstDayOfWeek(12) <= resolutiondate AND resolutiondate < lastDayOfWeek(12)
is there any?
How about this:
resolutiondate >= startOfWeek(-12) AND resolutiondate < endOfWeek(-12)
This is relative to current date. i.e. 12 weeks before. But you can adjust the number as appropriate.
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.
Current week is 0. -12 will be 12 weeks before now.
Btw, you can use the absolute dates if you already know it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is in fackt my problem how to make query not relative to current date. And meke relative to absolute week number.
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.