Hi everyone
I have a table which includes the names of people, a date field when something happened, and a value for that date. The list is not sorted and changed regularly.
ID, Name, Date, Value
01, Peter, 2013-05-12, 100
01, Peter, 2013-10-19, 104
02, Paul, 2013-12-01, 99
03, Jake, 2014-03-12, 54
01, Peter, 2014-03-05, 109
02, Paul, 2013-01-12, 78
What I'm looking for is a way to calculate/display a shortened list including only the latest entry by person.
ID, Name, Date, Value
02, Paul, 2013-12-01, 99
03, Jake, 2014-03-12, 54
01, Peter, 2014-03-05, 109
I can't change or sort the raw data itself (except adding additional calculated columns), and can't use VBA. Is there a way to make this work using pivot tables? E.g. an additional column entry displaying the value only if the date is the newest for this person?
Thanks for your help!
I have a table which includes the names of people, a date field when something happened, and a value for that date. The list is not sorted and changed regularly.
ID, Name, Date, Value
01, Peter, 2013-05-12, 100
01, Peter, 2013-10-19, 104
02, Paul, 2013-12-01, 99
03, Jake, 2014-03-12, 54
01, Peter, 2014-03-05, 109
02, Paul, 2013-01-12, 78
What I'm looking for is a way to calculate/display a shortened list including only the latest entry by person.
ID, Name, Date, Value
02, Paul, 2013-12-01, 99
03, Jake, 2014-03-12, 54
01, Peter, 2014-03-05, 109
I can't change or sort the raw data itself (except adding additional calculated columns), and can't use VBA. Is there a way to make this work using pivot tables? E.g. an additional column entry displaying the value only if the date is the newest for this person?
Thanks for your help!