W
william
I have a large database of inventory items. Each time we sell the item the
database adds entry into table that shows the following:
item
qty
date
ordernumb
I need to make a table that shows an items last sold date.
For example
item qty date
1 1 1/2/2009
1 2 1/3/2009
2 1 1/2/2009
2 3 1/4/2009
I want to remove all of the duplicates and only return the following
1 2 1/3/2009
2 3 1/4/2009
Please help- this way my table will only show the newest items sold.
database adds entry into table that shows the following:
item
qty
date
ordernumb
I need to make a table that shows an items last sold date.
For example
item qty date
1 1 1/2/2009
1 2 1/3/2009
2 1 1/2/2009
2 3 1/4/2009
I want to remove all of the duplicates and only return the following
1 2 1/3/2009
2 3 1/4/2009
Please help- this way my table will only show the newest items sold.