I am trying to write a filter to show all items from 2023 with TSYS and PAX in the summary. I am not able to find a field to add the date range by calendar selection. It does give me a range option but it is asking for weeks/days/etc. I'd like to input a calendar date range.
Any help would be greatly appreciated.
Thank you!
A very common question that has been answered many times. You can search the Community for more detailed answers.
Basically you need to use JQL to search between two dates something like this;
datefield >= datevalue and datefield <= datevalue2
Where datefield is which ever is important to your requirement, you did not mention if it is issues resolved in a year or created that year.
datevalue can be an actual date, like 2024-01-01 and 2024-12-31 or a function like startOfYear
example: created > "2024-01-01" and created < "2024-12-31"
https://support.atlassian.com/jira-software-cloud/docs/jql-functions/#startOfYear--
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.