Say I have a sheet containing three column (A=Name, B=Value, C=Date).
A contains a list of item names
B contains a list of values
C is the date that that row of data is received.
It could look like :
----A----.----B----.----C----
James Volvo 05/05/03
Robert Ford 05/05/03
James Audi 06/06/03
Robert BMW 06/06/03
What I want to do is delete the older rows if there is an updated row of data. i.e. on 05/05 I received James-Volvo, but later on 06/06 received James-Audi ad therefore James-Audi is the most recent data - so I want to delete James-Volvo. Similarly I want to delte Robert-Ford for the same reason (Robert-BMW is more recent information).
This is a very over-simplified versino of a very large and complex sheet that I have, but it illustrats the point.