Current Query searches all projects:
ORDER BY updated DESC, created DESC, key DESC
updated field looks like this for one ticket:
Sep/22/2024
What if I wanted only 2024 or only September of 2024?
Hi, @Robert Williamson - NOAA Affiliate
Welcome to Atlassian Community.
You can search using date limits in query. It looks like:
updated >= "2024/09/01" and updated <= "2024/09/30"
Or, if you want to limit by relative limits, you can use:
updated >= startOfMonth() AND updated <= endOfMonth()
You can read about this limits here:
JQL functions
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.