T
tyrdrannoy
I have two columns of data such as this:
A B
R 12345
N 15769
R 12345
R 78910
<null> <null>
N 15769
<null> <null>
What I need is to be able to count unique values in col B, where col A = "R"
When I use the sumproduct method, I always get returned #NA.
A B
R 12345
N 15769
R 12345
R 78910
<null> <null>
N 15769
<null> <null>
What I need is to be able to count unique values in col B, where col A = "R"
When I use the sumproduct method, I always get returned #NA.