Code Yarns ‍👨‍💻
Tech BlogPersonal Blog

How to create weekly view board in JIRA

📅 2017-Oct-26 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ jira ⬩ 📚 Archive

JIRA is an issue tracking tool that is popular with software developers. It allows you to create boards with swimlanes, each of which represents the different status of your issues.

For my boards, I find it useful to get a weekly view of my issues. In particular, I like to see the issues that were due last week, are due this week and next week.

Doing that is easy in JIRA. Just add three filters with these filter definitions to any board that you are using:

# Last week
assignee = currentUser() AND duedate < startOfWeek() AND duedate >= startofWeek("-1w") 

# This week
assignee = currentUser() AND duedate < endOfWeek() AND duedate >= startOfWeek()

# Next week
assignee = currentUser() AND duedate >= endOfWeek() AND duedate <= startofWeek("+1w") 

© 2023 Ashwin Nanjappa • All writing under CC BY-SA license • 🐘 Mastodon📧 Email