Search code examples
jirascrum

JIRA issue with "done" tasks


Perhaps it is more psychological than programming question:

We use JIRA with Greenhopper in our work, so when I receive new tasks I see them at the Agile Board for current sprint. For every sprint I have a LOT of tasks, after I have fixed, for example five of them I set their state as need test and these tasks go to tester (he has not only my tasks to test as usual). If these tasks are tested and all is ok they closed by tester. The problem is - that I could not see how many tasks I have done. When they are closed they disappear from my Agile board and I see only new tasks there... Imagine - yesterday you have completed five tasks for current sprint, but today chief adds ten more tasks in this current sprint for you.

So: Number_Of_Tasks - 5 + 10 = Number_Of_Tasks + 5.

And thus the Agile Board has no visual progress for me - it grows in size. This is very demotivating

In short: How could I view my done tasks?


Solution

  • You can use a Jira query as a filter. The query itself would look like this:

    status WAS "Need Test" BY currentUser() AND status = Closed
    

    ... yes, quite like SQL. ) Here's the official documentation link.