I have two lists of contracts One has past ending dates for each. Each time the ending date gets updated or extended a new record is createed in the original table. The other just has the contract number and product description. The first looks like this:
Contract End Date
AAA001 12/01/2013
AAA001 12/30/2013
BBB002 01/01/2014
BBB002 01/30/2014
You can see that for each contract the end date was updatedonce each.
Contract Product
AAA001 Apples
AAA001 Apples
BBB002 Oranges
BBB002 Oranges
I need a query that will produce a table like this where only the maximum date value is returned.
Contract Product End Date
AAA001 Apples 12/30/2013
BBB002 Oranges 01/30/2014
Is it possible to use a Mas...In statement? I am using Access 2010.