I'm looking to see if there's a formula that solves the problem below.
In column A, I have a series of application I.D.s; some can appear once, some twice, some three times etc...there is no way of knowing in advance how many times an application I.D. will appear.
In column B, I have a returned result of "Pass" or "Fail".
As per below
[TABLE="width: 500"]
<tbody>[TR]
[TD]APP100
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP101
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP101
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP102
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP102
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP102
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP103
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP104
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP104
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP104
[/TD]
[TD]Pass
[/TD]
[/TR]
</tbody>[/TABLE]
So, APP 100 has passed as has APP 101.
However, APP 102 despite having one pass recorded, has failed on two counts and as such has failed.
Similarly, APP 104 has failed on one count and as such has failed.
So, if I was to count the apps as unique values, I'd get a result of 5.
If I count the unique apps that have passed, I get 2.
Overall pass rate on unique application I.D.s is 40%
Counting unique values in the first column is easy.
What formula can i put in place that allows me to count the unique I.D.s that have passed?
Many thanks.
In column A, I have a series of application I.D.s; some can appear once, some twice, some three times etc...there is no way of knowing in advance how many times an application I.D. will appear.
In column B, I have a returned result of "Pass" or "Fail".
As per below
[TABLE="width: 500"]
<tbody>[TR]
[TD]APP100
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP101
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP101
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP102
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP102
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP102
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP103
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP104
[/TD]
[TD]Fail
[/TD]
[/TR]
[TR]
[TD]APP104
[/TD]
[TD]Pass
[/TD]
[/TR]
[TR]
[TD]APP104
[/TD]
[TD]Pass
[/TD]
[/TR]
</tbody>[/TABLE]
So, APP 100 has passed as has APP 101.
However, APP 102 despite having one pass recorded, has failed on two counts and as such has failed.
Similarly, APP 104 has failed on one count and as such has failed.
So, if I was to count the apps as unique values, I'd get a result of 5.
If I count the unique apps that have passed, I get 2.
Overall pass rate on unique application I.D.s is 40%
Counting unique values in the first column is easy.
What formula can i put in place that allows me to count the unique I.D.s that have passed?
Many thanks.