I am working on creating a sheet to be used for reporting. I have pulled in the contact list of names using the cell linking feature however, there are multiple rows with the same person. I would like to create a column listing just unique people. I started by creating a duplicate checkbox column using the formula:
=IFERROR(IF(LEN([Requestor Cell Link]1) = 0, "", IF(COUNTIFS([Requestor Cell Link]:[Requestor Cell Link], [Requestor Cell Link]1) = 1, 0, 1)), 0)
What I am looking for is to have a Requestor column that I would like to pull all of the unique values into. I tried to do so with the following formula:
=IF([Duplicate Check]1, 0, [Requestor Cell Link]1)
I am able to get the names with the checkbox unchecked however, I am missing all of the names that have duplicates. I still need their name, but just once. How can I do that?
