Could you please provide how do I filter tickets that were not updated 14 days after their creation?
There's no way to directly compare two fields in Jira in JQL (there are some extensions that give you functions that can do it)
The closest I can get you is only going to work for the last couple of weeks, but if your people keep on top of it, it might be useful.
created > -14d and updated < -14d
This says "issues created within the last fortnight, but not updated in the last fortnight". I would be tempted to vary that with a longer created date, and then add "and resolution is empty"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.