
John C. answered 11/20/19
Retired NPS Archaeologists with Advanced Computer Skills
This is from the Access Contact database. This is the SQL format that you can past into the SQL view of an Access query.
SELECT Contacts.Company, Contacts.[Last Name], Contacts.[First Name], Contacts.[E-mail Address], Contacts.[Job Title], Contacts.[Business Phone], Contacts.[Mobile Phone], Contacts.[Fax Number], Contacts.Address, Contacts.City, Contacts.[State/Province], Contacts.[ZIP/Postal Code], Contacts.[Country/Region], Contacts.[Web Page], Contacts.Notes, Contacts.Attachments
FROM Contacts
WHERE (((Contacts.[State/Province])="Ohio" Or (Contacts.[State/Province])="Illinois"))
ORDER BY Contacts.[Last Name];
It sorts by last name and is filtered on the two states.
Book a session and I can take you through your query and how to get a corrected mail merge.