How to write a filter to list out the Last Quarter issues
Hi @ganesh417ece ,
Welcome to the community !!
There is no direct keyword to get Issues from Quarter. You need to use Dates like below in JQL filters
created >= '2022-01-01' AND created <= '2022-04-01'
dates should be mentioned in yyyy-mm-dd format
Please note: created <= '2022-04-01' will get all tickets created before 2022-April-01 00:00Hrs
If you need to mention hours, please use example created <= '2022-10-12 11:00'
For this use case I like to avoid using specific dates since they don't extend to the next year without having to edit, changing "2022" to "2023" for example. Rather I favor "startofyear()".