OK. I got the logical side of the equation to work and can save with no errors. However, again I am limited since the event start date and participant ID are in separate tables. I am guessing I need to include this in the select formula. Knowing basically nothing about SQL commands, would it be something like the following:
(
select
MIN(START_DATE)
from "Special_Event"
"ID"
from "Participants" Left Outer Join "Special_Event" On
"Participants"."EventID"="Special_Event"."ID" A
where a."ID"="Participants"."ID"
Just a stab. Please let me know what corrections need to be made. Thanks.