What's the best way to create new report with issue ID, issue name and updated within specified window of time.

Heather Pigott February 9, 2017

Our team is looking to report out the issue ID, issue name and report out those which were updated in the last week. Is there a good way to go about this without having access to the DB?

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 9, 2017

Go to search issues and run something like

updated > startOfWeek("-1") and updated < endOfWeek ("-1")

That will get you a list of all the issues updated last week.  For a more simple "updated in the last seven days", try just

updated > -7d

In both cases, the issue navigator can then show you the fields you want (I'm guessing issue "name" means "summary", which will come out in the default settings)

Heather Pigott February 10, 2017

Thanks so much, that's what I was looking for I dunno how I didn't think of that myself

 

I forgot to include one caveat in this... my boss also wants the "most recent comment" which I haven't been able to find a way to do without a plug in... am I totally wrong there?

Suggest an answer

Log in or Sign up to answer