Complex Query Question

DeutchBose

Board Regular
Joined
Mar 22, 2004
Messages
83
I have raw data in the following format


FieldA, Field B, Date

X, 1, 12/10/04
X, 1, 12/11/04
x, 2, 11/1/04
x, 2, 11/5/04
y, 3, 11/1/04
y, 3, 11/5/04

The combination of Field A and Field B identify a unique 'account number'...I need to query out the account numbers with only the most recent dates...how would I go about doing this...this should be simple, but I can't seem to figure it out...
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Can you not use a totals query with the date field as Max?

The SQL might look something like this:

SELECT [FieldA] & [FieldB] AS Fields, Max(Table1.Date) AS MaxOfDate
FROM Table1
GROUP BY [FieldA] & [FieldB];
 
Upvote 0
Can you not use a totals query with the date field as Max?

The SQL might look something like this:

SELECT [FieldA] & [FieldB] AS Fields, Max(Table1.Date) AS MaxOfDate
FROM Table1
GROUP BY [FieldA] & [FieldB];
That's pretty much what my thread tells them how to do, only with the steps on how to do it through the Query builder instead of using SQL directly.
 
Upvote 0

Forum statistics

Threads
1,215,002
Messages
6,122,652
Members
449,092
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top