I have a list of names where each name is repeated multiple times, with values in only certain columns to the right. An example is shown below. I want to use a formula (INDEX, MATCH?) To return a clean data set without duplicates as shown in the second table. Any help?
Starting Point:
Desired End Point:
Starting Point:
Name | Age | Height | Weight |
John Smith | 32 | ||
John Smith | 61 | ||
John Smith | 185 | ||
Amy Miller | 35 | ||
Amy Miller | 56 | ||
Amy Miller | 115 |
Desired End Point:
Name | Age | Height | Weight |
John Smith | 32 | 61 | 185 |
Amy MIller | 35 | 56 | 115 |