I have searched the forums and found many posts on this topic, but not one which resolves the below issue.
If you had 2 columns of data: A with christian names B with surnames
E.g.
A B
David Smith
Peter Smith
Chris Brown
Peter Smith
And you wanted to count the unique number of names in columns A and B, is there a formulae which can compute this, excluding blanks. In the above example it would be 3.
I have tried a variety of sumproduct and frequency formulae to no evail include the likes of:
Any help on this I would be most grateful.
If you had 2 columns of data: A with christian names B with surnames
E.g.
A B
David Smith
Peter Smith
Chris Brown
Peter Smith
And you wanted to count the unique number of names in columns A and B, is there a formulae which can compute this, excluding blanks. In the above example it would be 3.
I have tried a variety of sumproduct and frequency formulae to no evail include the likes of:
Code:
=SUMPRODUCT(--(FREQUENCY(MATCH(A1:A4&B1:B4,A1:A4&B1:B4,0),ROW(A1:B4))>0))
Any help on this I would be most grateful.