[AccessD] Min Date in a query

Drew Wutka DWUTKA at Marlow.com
Mon Mar 30 15:36:08 CDT 2009


Can you use a subquery to find your date?

Drew

-----Original Message-----
From: accessd-bounces at databaseadvisors.com
[mailto:accessd-bounces at databaseadvisors.com] On Behalf Of William
Hindman
Sent: Monday, March 30, 2009 2:18 PM
To: Access Developers discussion and problem solving
Subject: [AccessD] Min Date in a query

...I'm trying to eliminate the user having to select the next event from
a 
combo.

...I have an tblEvents with a DateStart field formatted as Date

...from a query, I need to find the first date in that field greater
than 
Date()

...I've tried dozens of variations on Min but they all come back either
with 
an aggregate error or return each future event date

...this is of course where'd with a couple other ANDs

INSERT INTO tblExhibitorWeb ( CompanyID, CompanyName, EventShowCode) IN 
'F:\JEMS\XPData\jemdataxp.mdb'
SELECT tblCompany.CompanyID, tblCompany.CompanyName,
tblEvents.EventShowCode 
FROM tblEvents INNER JOIN (tblCompany INNER JOIN tblEventReg ON 
tblCompany.CompanyID = tblEventReg.CompanyID) ON tblEvents.EventID = 
tblEventReg.EventID
WHERE (((tblCompany.AdClass)<>"X") AND 
((tblEventReg.ParticipantType)="Exhibitor" Or 
(tblEventReg.ParticipantType)="Exhibitor/NA/PSC") AND 
((tblEventReg.PrimaryContact)=True) AND ((tblEvents.EventName)="JIS")
AND 
((Min([tblEvents]![EventStartDate]))>Date()))
ORDER BY tblCompany.CompanyName;

...the error says I can't have and aggregate in the where clause
...help!
...ps I dropped a lot of fields from the sample to shorten it.

William
 


-- 
AccessD mailing list
AccessD at databaseadvisors.com
http://databaseadvisors.com/mailman/listinfo/accessd
Website: http://www.databaseadvisors.com
The information contained in this transmission is intended only for the person or entity to which it is addressed and may contain II-VI Proprietary and/or II-VI Business Sensitive material. If you are not the intended recipient, please contact the sender immediately and destroy the material in its entirety, whether electronic or hard copy. You are notified that any review, retransmission, copying, disclosure, dissemination, or other use of, or taking of any action in reliance upon this information by persons or entities other than the intended recipient is prohibited.





More information about the AccessD mailing list