S
Stephanie
Hi there! I've been looking at Duane H's calendar db. I still don't know
what I'm doing!
I've created a query that brings back the fields I need. Here's the
concept: There are on-going volunteering opportunities (VolunteerName)
associated with organizations (OrganizationName). Each event has a beginning
and ending time (EventStart, EventEnd), a frequency (1xweek, 2xweek,
2xmonth...), and the Days associated (I ended up using the 7 days of the week
with yes/no boxes). Each on-going volunteering opportunity has an associated
Coordinator.
What I'd like to accomplish is a generic 5 week calendar month that shows
the OrganizationName, VolunteerName, EventStart, EventEnd, and Coordinator to
appear on the correct Day and with the appropriate Frequency.
I'm appreciate any starting suggestions! I'll post my query in case it
helps. Thanks- I appreciate the Calendar pro's help!
SELECT DISTINCT Volunteering.VolunteeEventStart,
Volunteering.VolunteerEventEnd, Volunteering.VolunteeringID,
Organizations.OrganizationName, Volunteering.VolunteerName,
Frequency.Frequency, Volunteering.Monday, Volunteering.Tuesday,
Volunteering.Wednesday, Volunteering.Thursday, Volunteering.Friday,
Volunteering.Saturday, Volunteering.Sunday, Nz([NickName],[FirstName]) & " "
& [LastName] AS [Member Name], Event.Coordinator
FROM ((Frequency INNER JOIN (Volunteering INNER JOIN Event ON
Volunteering.VolunteeringID = Event.VolunteeringID) ON Frequency.FrequencyID
= Volunteering.FrequencyID) INNER JOIN (Organizations INNER JOIN
EventSponsors ON Organizations.OrganizationID = EventSponsors.OrganizationID)
ON Volunteering.VolunteeringID = EventSponsors.VolunteeringID) INNER JOIN
Contacts ON Event.ContactID = Contacts.ContactID
WHERE (((Volunteering.VolunteerOngoing)=Yes) AND ((Event.Coordinator)=Yes));
what I'm doing!
I've created a query that brings back the fields I need. Here's the
concept: There are on-going volunteering opportunities (VolunteerName)
associated with organizations (OrganizationName). Each event has a beginning
and ending time (EventStart, EventEnd), a frequency (1xweek, 2xweek,
2xmonth...), and the Days associated (I ended up using the 7 days of the week
with yes/no boxes). Each on-going volunteering opportunity has an associated
Coordinator.
What I'd like to accomplish is a generic 5 week calendar month that shows
the OrganizationName, VolunteerName, EventStart, EventEnd, and Coordinator to
appear on the correct Day and with the appropriate Frequency.
I'm appreciate any starting suggestions! I'll post my query in case it
helps. Thanks- I appreciate the Calendar pro's help!
SELECT DISTINCT Volunteering.VolunteeEventStart,
Volunteering.VolunteerEventEnd, Volunteering.VolunteeringID,
Organizations.OrganizationName, Volunteering.VolunteerName,
Frequency.Frequency, Volunteering.Monday, Volunteering.Tuesday,
Volunteering.Wednesday, Volunteering.Thursday, Volunteering.Friday,
Volunteering.Saturday, Volunteering.Sunday, Nz([NickName],[FirstName]) & " "
& [LastName] AS [Member Name], Event.Coordinator
FROM ((Frequency INNER JOIN (Volunteering INNER JOIN Event ON
Volunteering.VolunteeringID = Event.VolunteeringID) ON Frequency.FrequencyID
= Volunteering.FrequencyID) INNER JOIN (Organizations INNER JOIN
EventSponsors ON Organizations.OrganizationID = EventSponsors.OrganizationID)
ON Volunteering.VolunteeringID = EventSponsors.VolunteeringID) INNER JOIN
Contacts ON Event.ContactID = Contacts.ContactID
WHERE (((Volunteering.VolunteerOngoing)=Yes) AND ((Event.Coordinator)=Yes));