Hello,
I was recently trying to determine a way to count the unique values of one column and use that to determine the count of Yes Answers from another column based on that.
Ex.
Column A|Column B
00000 |Yes
00001 |Yes
00000 |No
So, I wanted to take the unique Values of Column A and determine narrow down the Yes Answers from Column B to determine the sum of them.
So in the example, there would only be 2 as the sum of these. There may also be some blank value in the First Column as well.
I tried incorporating this into my formula as it provides all the quantity of Unique values of all of Column A
=SUM(IF(FREQUENCY(MATCH(B2:B1000,B2:B1000,0),MATCH(B2:B1000,B2:B1000,0))>0,1))
Any help on this is welcome as I have tried several attempts and all have failed.
I was recently trying to determine a way to count the unique values of one column and use that to determine the count of Yes Answers from another column based on that.
Ex.
Column A|Column B
00000 |Yes
00001 |Yes
00000 |No
So, I wanted to take the unique Values of Column A and determine narrow down the Yes Answers from Column B to determine the sum of them.
So in the example, there would only be 2 as the sum of these. There may also be some blank value in the First Column as well.
I tried incorporating this into my formula as it provides all the quantity of Unique values of all of Column A
=SUM(IF(FREQUENCY(MATCH(B2:B1000,B2:B1000,0),MATCH(B2:B1000,B2:B1000,0))>0,1))
Any help on this is welcome as I have tried several attempts and all have failed.