I have a need to find out which Person has the highest number of reviews performed that found 1 defect
Sample data:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Column A
(Person)[/TD]
[TD]Column B
(Defects Found)[/TD]
[TD]Column C
(Reviews Performed)[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD]0[/TD]
[TD]65[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD]42[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]85[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1[/TD]
[TD]4[/TD]
[TD]54[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]2[/TD]
[TD]0[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]2[/TD]
[TD]1[/TD]
[TD]74[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]2[/TD]
[TD]3[/TD]
[TD]45[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]3[/TD]
[TD]1[/TD]
[TD]108[/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]3[/TD]
[TD]3[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]3[/TD]
[TD]5[/TD]
[TD]85[/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]4[/TD]
[TD]1[/TD]
[TD]49[/TD]
[/TR]
</tbody>[/TABLE]
In the above, person 2 did 74 reviews that found 1 defect
Once I get the 74 review count, I plan to do an INDEX/MATCH to identify that it was Person 2
To get the 74 I tried this, but it didn't work
{=IF(B1:B11=1,MAX(C1:C11),0)}
Any suggestions on how to fix this?
Sample data:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Column A
(Person)[/TD]
[TD]Column B
(Defects Found)[/TD]
[TD]Column C
(Reviews Performed)[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]1[/TD]
[TD]0[/TD]
[TD]65[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]1[/TD]
[TD]42[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]85[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]1[/TD]
[TD]4[/TD]
[TD]54[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]2[/TD]
[TD]0[/TD]
[TD]25[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]2[/TD]
[TD]1[/TD]
[TD]74[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]2[/TD]
[TD]3[/TD]
[TD]45[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]3[/TD]
[TD]1[/TD]
[TD]108[/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]3[/TD]
[TD]3[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]3[/TD]
[TD]5[/TD]
[TD]85[/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]4[/TD]
[TD]1[/TD]
[TD]49[/TD]
[/TR]
</tbody>[/TABLE]
In the above, person 2 did 74 reviews that found 1 defect
Once I get the 74 review count, I plan to do an INDEX/MATCH to identify that it was Person 2
To get the 74 I tried this, but it didn't work
{=IF(B1:B11=1,MAX(C1:C11),0)}
Any suggestions on how to fix this?