You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello
I want to make sure our employees are logging work on their task at least once every weeks.
My ultimate goal is;
I want to find any task which have not had any time logged in the last 7 days
Right now my filter is finding these issues with the worklogdate fields... but I can't figure out how I could use this. Maybe I should try a different field but I haven't figured out any who might be better.
IF I could verify if the last worklogdate is over 7days old, it would be fine, but I can't isolate the "last" worklog date,
so the only thing I can find is any task which have worklogdates older than 7 days (this would mean all of them eventually, since the goal is to log work at least once a week, at least one worklogdate is over 7days eventually) or I can find all those that have worklogdates in the last 7 days. (which is exactly the opposite of what I want)
Now... If I could filter out (substract) all the task that have worklogdates in the last 7 days from another filter, it would work... but I can't figure out how to do this. (basically filter results from filter x but WITHOUT (worklogdate < -7d)
is there a way I can do this
(basically, is there a way I can filter out a filter results out of another filter results)
Hi Hubert,
basically, is there a way I can filter out a filter results out of another filter results
Yes, you can do that. The JQL will be:
filter = 10200 AND asdf ~ 'asdasdasdasd'
Besides that, this JQL will give you all the issues that have work logged within the past 7 days:
worklogDate >= startOfDay(-7d)
An alternative way could be poking the database table worklog. Take a look at the database and see if you are able to come up with anything.
Cheers!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.