In Jira, I have a custom attribute called “CustomerCount”, which will have value between 0 and 500. For example, lets say, there are 5 issues with the following value for this custom attribute:-
Issue1::CustomerCount=5 ; Issue2::CustomerCount=0 ; Issue3::CustomerCount=25 ; Issue4::CustomerCount=1 ; Issue5::CustomerCount=4
I want to creare a report that will show the following :
a) aggregated CustomerCount (i.e. sum of CustomerCount for all the 5 issues. In this case, it should report as 35 i.e 5+0+25+1+4)
b) aggregated Issue count where the issue’s CustomerCount is > 0. In this case, it should report as 4 (because, for Issue2, the CustomerCount is 0; for all the other issues it is > 0)
How to achieve this in EazyBi