Dear @[deleted] ,
you could use the simple Filter Gadget three times and assign each a filter like this
issuetype = "Bug" and createdDate >= startOfDay()
issuetype = "Bug" and createdDate >= startOfWeek()
issuetype = "Bug" and createdDate >= startOfMonth()
If you need day, week, month back:
issuetype = "Bug" and createdDate >= -24h
issuetype = "Bug" and createdDate >= -7d
issuetype = "Bug" and createdDate >= -30d
So long
Thomas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.