NauticalGent
Ignore List Poster Boy
- Local time
- Yesterday, 23:29
- Joined
- Apr 27, 2015
- Messages
- 6,915
I opened up a query in SQL view and here is what I saw:
Love this format, every once in awhile the Access team gets it right...
Code:
SELECT
tbl_Participants.RiderID,
[FirstName] & " " & (" """ + [NickName] + """") AS Member,
tbl_Participants.LastName,
tbl_Participants.Email,
tbl_Participants.ContactNumber,
tbl_Participants.MotorcycleOwner
FROM
tbl_Participants
INNER JOIN tbl_Events ON tbl_Participants.RiderID = tbl_Events.RiderID
WHERE
(
((tbl_Participants.Email) IS NOT NULL)
AND ((tbl_Events.EventDate) = #7 / 27 / 2024 #)
)
ORDER BY
tbl_Participants.RiderID;
Love this format, every once in awhile the Access team gets it right...
Last edited: