JQL: How to extend my past day query over the weekend?

David Parks February 28, 2012

I have a query that is looking at the past day, on monday that query should include everything from Friday, through Monday.

On Tuesday-Friday that query should include only the past day through the current day.

4 answers

1 accepted

2 votes
Answer accepted
David Parks March 15, 2012

This can't be done, I've created a JIRA request, if anyone's interested go vote on it.

https://jira.atlassian.com/browse/JRA-27539

9 votes
Frank Sarubbi March 6, 2015

So I have this query which seems to work for this case.

status CHANGED AFTER -1d OR ( status CHANGED DURING (-3d, endOfWeek(-1w) ) ))

The during clause will be false most of the time since -3d will be after the -1w except for monday

-3d could be changed to startOfDay(-3d)

Doesn't handle holidays but Gets you 90% I think

Stefan Schütt June 10, 2016

great, thhank you for you solution! Just the last bracket in your query has to be removed in order to avoid a syntax error:

status CHANGED AFTER -1d OR ( status CHANGED DURING (-3d, endOfWeek(-1w) ) )



If you do not only want to check for status changes but for every kind of change, the following query should do the job:

updatedDate >= -1d OR ( updatedDate <= endOfWeek(-1w) AND updatedDate >= -3d)

 



 

Like # people like this
1 vote
Ian D March 17, 2012

I don't have a solution to your specific question. But I'm thinking this is why we use the greenhopper RapidBoard almost as much as dashboards. We put quickfilter button's at the top to like "Updated today", "Updated -1d", "Updated -2d", "Resolved -1d", etc. By using IN in the quickfilter - e.g. dateUpdated IN (value) -you can have more than one quickfilter active on the rapidboard at once.

Only useful if you also have greenhopper though :(

David Parks March 17, 2012

We have GreenHopper, Agile is our main usecase for JIRA, but the rapid board for scrum apears wholy unfinished.

1 vote
Mizan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2012

If i am right you want to filter issues , only on monday you should see issues from friday to sunday and for other weekdays it should show only of past day ... you can use 2 filters startOfDay("-3d") for monday and startOfDay("-1d") for remaining days.

David Parks February 28, 2012

I need to save the search and assign it to the filtered results dashboard gadget. I can only select one filter for that gadget. So, by my understanding I need one query that can return startOfDay(-3) on monday and startOfDay(-1) on all other days. I can't see how to perform a test that today is monday. If I could do (now()=="Monday" & startOfDay(-3)) OR (now()!="Monday" & startOfDay(-1)) I'd be set, but that doesn't work, and I can't find any documentation to help me see how to pull this off.

Suggest an answer

Log in or Sign up to answer