I have a table with 6 column fields. if there is a duplicate email, then select the newer record based on dates in second column and take all data from that row except column F (6th column) in Column F combine the values in all the records
so for example if there is
These two lines of data should be combined:
s@s.com 15/12/2012 122 dd34 23ds3 This data
s@s.com 12/12/2012 123 dd35 232d2 Should be combined
The result should be:
s@s.com 15/12/2012 122 dd34 23ds3 This data Should be combined
See it working