Hey Guys,
i want to create a filter that shows me recent updated issues that are still open. It is for our dashboard that is displayed on a Tv in the office.
Can you help me?
Oliver
Hi @Oliver ,
Below list issues updated in last 1 day an status is not done. Hope it works.
status !=DONE AND updated >= -1d order by created DESC
One suggested change...
statuscategory !=DONE AND updated >= -1d order by created DESC
feel free to change the “1” to align with how you define recent
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
sure/maybe.... lets say you want to exclude issues create in the last 24h...
AND createddate < startofday(-1d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.