Restrict query to first meeting date (1 Viewer)

Local time
Today, 18:30
Joined
Sep 14, 2020
Messages
38
Hi - it's been a while since touching Access, and rarely ever used queries
I am using the latest version of Office 365 on latest version of Windows.
I have a table of Clients and a Table of Meeting Dates
I need to restrict the list to the first meeting date.
I am getting a list of clients duplicated for every meeting date.
Any advice will be most welcome.
Thanks Peter
 

theDBguy

I’m here to help
Staff member
Local time
Today, 01:30
Joined
Oct 29, 2018
Messages
21,455
Are you trying to return one record for each client by finding out their first meeting date?
 
Local time
Today, 18:30
Joined
Sep 14, 2020
Messages
38
@theDBguy
Yes - returning one client record showing the first meeting date
What I'm getting is a client record for every meeting held -
 

theDBguy

I’m here to help
Staff member
Local time
Today, 01:30
Joined
Oct 29, 2018
Messages
21,455
@theDBguy
Yes - returning one client record showing the first meeting date
What I'm getting is a client record for every meeting held -
You could try using a Totals query. For example,
SQL:
SELECT Customer, Min(MeetingDate) As FirstMeeting
FROM TableName
GROUP BY Customer
 

Users who are viewing this thread

Top Bottom