I have multiple Names in Column A that correlate to an Account Name in Column C.
Column A and Column C have many duplicate values.
I want to be able to identify where the same name in Column A has different entries in Column C
e.g.
So in the above scenario, I would get a return that shows John Smith has 4 unique accounts, and it would list what they are.
I don't care about multiple Column A entries if they have the same unique value in Column C, e.g.
These results can be ignored as they only have 1 unique match.
What is the best formula / pivot approach to use to display the data I am after? Ideally I would like to be able to filter to see where a value in Column A has greater than 1 unique corresponding entry in Column C, it will then show me the Column A name with the unique Column C values that correspond to it.
Thanks
Column A and Column C have many duplicate values.
I want to be able to identify where the same name in Column A has different entries in Column C
e.g.
Column A | Column C |
John Smith | JSmith1 |
John Smith | JSmith2 |
John Smith | JSmith3 |
John Smith | JSmith1 |
John Smith | JSmith4 |
So in the above scenario, I would get a return that shows John Smith has 4 unique accounts, and it would list what they are.
I don't care about multiple Column A entries if they have the same unique value in Column C, e.g.
Column A | Column C |
Joe Bloggs | JBloggs1 |
Joe Bloggs | JBloggs1 |
Joe Bloggs | JBloggs1 |
These results can be ignored as they only have 1 unique match.
What is the best formula / pivot approach to use to display the data I am after? Ideally I would like to be able to filter to see where a value in Column A has greater than 1 unique corresponding entry in Column C, it will then show me the Column A name with the unique Column C values that correspond to it.
Thanks