assignee is not EMPTY AND created >= -90d

assignee is not EMPTY AND created >= startOfMonth(-3) AND created <= endOfMonth(-1)

Use JQL to Filter by Date Range:
Assuming the current month is June, the last quarter would include April, May, and June. Here’s how you construct the JQL query for issues created in the last quarter:
jql
Copy code
assignee is not EMPTY AND created >= startOfMonth(-3) AND created <= endOfMonth(-1)


Explanation of the Query Components:

Adjustments Based on Current Month:

Usage in Jira:

Conclusion:

By using JQL functions startOfMonth() and endOfMonth() with appropriate offsets, you can effectively filter issues created within the last quarter where the assignee is not empty. This approach allows you to precisely define and retrieve the data you need directly within Jira's search functionality.