Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to Combine "Due This Week" and Assignee Filters in Jira

Vassia Bravou September 30, 2025

Hello,

I'm encountering an issue in Jira where I cannot combine the "Due this week" filter with the assignee filter. When I select "Due this week" from the dropdown, the URL updates to: 

 ?filter=duedate <= endOfWeek() and duedate >= startOfWeek()

Subsequently, when I select an assignee from the dropdown, the URL changes to:

 ?filter=assignee = "{user-id}"

However, the previous due date filter disappears, and the two filters don't seem to combine. Is this expected behavior, or am I missing something?

1 answer

1 accepted

1 vote
Answer accepted
Christos Markoulatos
Community Champion
September 30, 2025

Hi Vassia,

What you’re seeing is expected behavior, the built-in filter dropdowns in Jira’s issue view or board only apply one filter at a time, so when you select “Due this week” and then choose an assignee, the previous filter is replaced. Unfortunately, these UI filters don’t combine dynamically.

How to achieve dynamic filtering

If you want to dynamically choose values (e.g., pick any assignee and keep the “Due this week” condition), you have two main options:

 Option 1: Use JQL in the Issue Navigator

You can write a query like:

duedate >= startOfWeek() AND duedate <= endOfWeek() AND assignee = currentUser()

Or replace currentUser() with any username. This gives you full flexibility, but it’s manual.

 Option 2: Use Quick Filters on Boards

Quick Filters combine with AND logic, so you can create:

  • One filter for duedate >= startOfWeek() AND duedate <= endOfWeek()
  • Another for assignee = currentUser()

When you click both, Jira applies both conditions.
Learn more: Configure Quick Filters.

Option 3: Dynamic Filters with Marketplace Apps

If you need true dynamic filtering with dropdowns (e.g., pick any assignee or date range on the fly), Jira doesn’t support this natively. You can use apps like:

References:

Hope this help!

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
TAGS
AUG Leaders

Atlassian Community Events