Hello everyone,
I need help in order to create a filter that will start on Monday and reset on next Monday, for example:
created >= startOfWeek("+1d") AND created <= endOfWeek ("+1d")
but I need for the filter to show me results from a specific timeframe. For example, from Monday to Sunday to show results between 8 AM and 11 AM.
Thank you!
Hi @Vlad Manolache ,
Jira's JQL doesn't have a direct function to specify time ranges within a day. try following JQL which approximates the time range within the day based on timestamps.
The startOfDay("+8h") and startOfDay("+11h") are indicative and might not precisely represent 8 AM and 11 AM in all scenarios due to timezone differences or issues created at the exact start of that hour.
(created >= startOfWeek("+1d") AND created <= endOfWeek("+1d"))
AND (created >= startOfDay("+8h") AND created <= startOfDay("+11h"))
Adjust the time range and constraints based on your specific requirements and timezone considerations.
Regards,
Bhushan
Hello Bhushan,
Thank you for your answer and instructions.
Best regards,
Vlad
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.