Consoildating Rows

  • Thread starter Thread starter koba
  • Start date Start date
K

koba

Hi Alll

I have a whole heap of raw data that is set up like this

ACCOUNT DATE PART-NO QTY SALES
MB 23/01/2004 6001 1 55
MB 15/03/2005 6001 1 59
MB 1/10/2003 6004 1 44
MB 7/12/2004 6004 1 110
MB 7/05/2003 6009 1 111
MB 27/08/2003 6009 1 112



I need to somehow delete or filter data and only show the most recen
sale of one particular part number, so I need it to look lik
this

MB 15/03/2005 6001 1 59
MB 7/12/2004 6004 1 110
MB 27/08/2003 6009 1 112

Please any help would be much appreciated.

Thanks
Andre
 
I would make sure that the data is sorted so that the latest date is at the
bottom of each group.

Then I'd put this formula in F2:
=IF(COUNTIF(C3:$C$65536,C2)=0,"keepit","Delete it")
And drag down

Then filter to show the "deleteit" rows.
delete those visible cells.

Then delete that helper column.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top