Return Earliest Date

OxDavis

Registered User.
Local time
Today, 10:54
Joined
Jul 14, 2005
Messages
74
Ok, I have a query that returns a case manager, their clients, and a date attributed to each client. Ex:

Code:
[B]Case Manager                    Client                  Order Date[/B]
James Bond                     Pussy Galore              01/05/2005
Oliver Cromwell                Janet Roundhead           05/25/2005
Alan Turing                      E. Nigma                 08/20/2005
James Bond                     Holly Goodhead           12/18/2004

What I would like is for the first James Bond record to disappear, as it is later than the last record, giving me only the FIRST Order Date for each Case Manager. Is this possible? If so, what is the criterion expression?
 
Select M1.[Case Manger], M1.Client, M1.[Order Date]
From MyTable M1
Where [Order Date] = (Select min([Order Date]) from MyTable M2 Where M2.[Case Manger] = M1.[Case Manger])
 
An aggregate query would be the best answer. Since you are finding the record of the FIRST order, which means the EARLIEST order date, you would group the aggregate on the Case Manager, as follows (tblCASE is name of table):

SELECT [Case Manager], [Client], Min([Order Date]) AS FirstOrderDate
FROM tblCASE
GROUP BY [Case Manager];

Adjust your table and field names accordingly.
 
Alright, thats sounds good, but Client and Order Date are in the same table, whereas Case Manager is in a separate table. Could you post the correct parsing/syntax for that? I apologize for my lack of SQL knowledge.
 
*bump* Could anyone translate the last poster's SQL into something I can put into the Expression Builder? I would greatly appreciate it.
 
Create a SELECT query. You don't need an expression builder.

Since you have two tables involved, I *assume* you have a key field defined, probably the Primary Key for the Case Manger, with its corresponding Foreign Key in the table containing the client and order date.

Here is the query with two tables (called tblCase, and tblOrder), with the key field on each table called "CaseManagerID".

SELECT [tblCase].[Case Manager], [tblOrder][Client],
Min([tblOrder][Order Date]) AS FirstOrderDate
FROM tblCASE INNER JOIN tblOrder ON [tblCase].[CaseManagerID] = [tblOrder][CaseManagerID]
GROUP BY [tblCase].[Case Manager].[Case Manager];

Change the names of the tables and fields to match your tables and fields. Then paste the statement into an SQL view query. Open the query in design view, and note how the grid looks.

You can use this query as the underlying query for the form, and set the control source of the text box to whatever field you want.
 
Im getting a syntax error. Might I send you some screen shots?
 
I see the error, it is mine.

Change

FROM tblCASE INNER JOIN tblOrder ON [tblCase].[CaseManagerID] = [tblOrder][CaseManagerID]

to

FROM tblCASE INNER JOIN tblOrder ON [tblCase].[CaseManagerID] = [tblOrder].[CaseManagerID]

NOTE: I left out a table.field separation point out of the first statement where it says [tblOrder][CaseManagerID]
 
Code:
[B]Case Manager                    Client                  Order Date[/B]
James Bond                     Pussy Galore              01/05/2005
Oliver Cromwell                Janet Roundhead           05/25/2005
Alan Turing                      E. Nigma                 08/20/2005
James Bond                     Holly Goodhead           12/18/2004
The only problem with using an agregate function is that it is possible for the quiery to return the CLIENT for the row that the min([order date]) is NOT associated with.
It could return James Bond, Pussy Galore, 12/18/2004
 
Many thanks. I got it to work, buts as FoFa said I cannot add the client's names to the query without getting multiple dates for the same Case Manager, but thats ok, I'm just gonna base another query with the required calculations off of this one. Thanks a ton guys, you're the best. :D
 
It can still be done in one query as:
SELECT [tblCase].[Case Manager], [tblOrder].[Client],
[tblOrder].[Order Date]
FROM tblCASE INNER JOIN tblOrder ON [tblCase].[CaseManagerID] = [tblOrder].[CaseManagerID]
Where [tblOrder].[Order Date] = (Select min(C2.[Order Date]) from tblCASE C2 Where [tblCase].[CaseManagerID] = C2.[CaseManagerID])

The only way this can give multi rows would be if there are two records with the same CaseMangerID with the same date.
 

Users who are viewing this thread

Back
Top Bottom