I have a large set of a data that has multiple entries for the same users based on start dates. I'm trying to find a way to either filter or extract the data to a new sheet where it will show the latest row only for each user.
I think I can extract a single cell based on the criteria, but is there a quick way to show just the entre row with the latest date for each user?
All the latest dates are different as well.
Example:
And the result would be:
Thanks,
Monty
I think I can extract a single cell based on the criteria, but is there a quick way to show just the entre row with the latest date for each user?
All the latest dates are different as well.
Example:
USER_ID | NAME | DOB | START_DATE | END_DATE |
---|---|---|---|---|
123456 | Tiger Woods | 30/12/1975 | 01/12/2019 | 31/12/2019 |
123456 | Tiger Woods | 30/12/1975 | 01/07/2019 | 30/06/2020 |
456456 | Adam Scott | 16/07/1980 | 01/07/2021 | 30/06/2022 |
456456 | Adam Scott | 16/07/1980 | 01/07/2022 | |
987654 | John Daly | 28/04/1966 | 01/07/2020 | 30/06/2021 |
987654 | John Daly | 28/04/1966 | 01/07/2021 | 31/12/2021 |
987654 | John Daly | 28/04/1966 | 01/01/2022 |
And the result would be:
USER_ID | NAME | DOB | START_DATE | END_DATE |
---|---|---|---|---|
123456 | Tiger Woods | 30/12/1975 | 01/07/2019 | 30/06/2020 |
456456 | Adam Scott | 16/07/1980 | 01/07/2022 | |
987654 | John Daly | 28/04/1966 | 01/01/2022 |
Thanks,
Monty