I have a csv file like this:
Date of event       Name        Date of birth
06.01.1986          John Smit   23.08.1996
18.12.1996          Barbara D   01.08.1965
12.12.2001          Barbara D   01.08.1965
17.10.1994          John Snow   20.07.1965
I have to find unique rows by "Name" and "Date of birth" (may be with some other columns) but with MAX date .
So i have to get csv file like this:
Date of event       Name        Date of birth
06.01.1986          John Smit   23.08.1996
12.12.2001          Barbara D   01.08.1965
17.10.1994          John Snow   20.07.1965
How to do that? I don`t have any ideas..
 
     
    