S
Stephanie
Hi. This is driving me crazy...
I have a subform on a main form. I want some data to default using combo
boxes and some data to be specific to the individual. Premise: Contacts
volunteer with their Animal for on-going Volunteer opportunities. An
on-going opportunity (e.g. Shriner's Hospital) could have started in 1999,
but the Contact/Animal team started in 2004. I have combo boxes on the
VolunteerName. I want to keep track of when a Contact/Animal team started
and ended so that I always know who volunteered there in the past and who is
currently volunteering there now (that's the Contact specific info I want to
write). But I can't seem to write this Contact/Aninmal specific data along
with the default data. The main form is based on Contact and the subform is
as below.
Animals
AnimalsID
Volunteering
VolunteeringID
VolunteerName
VolunteerOngoing
Event
EventVolunteerID
ContactID
VolunteeringID
AnimalsID
SELECT Event.*, VolunteerOngoing, Volunteering.VolunteerName
FROM (Event LEFT JOIN Animals ON Event.AnimalsID = Animals.AnimalsID) INNER
JOIN Volunteering ON Event.VolunteeringID = Volunteering.VolunteeringID
WHERE (((Volunteering.VolunteerOngoing)=Yes));
I've tried to add a table for specific Contact-Volunteer Detail info. I've
tried to modify existing tables to add the detail info... Can it be done?
I'd appreciate any suggestions. This is the big showstopper in my database
design.
I have a subform on a main form. I want some data to default using combo
boxes and some data to be specific to the individual. Premise: Contacts
volunteer with their Animal for on-going Volunteer opportunities. An
on-going opportunity (e.g. Shriner's Hospital) could have started in 1999,
but the Contact/Animal team started in 2004. I have combo boxes on the
VolunteerName. I want to keep track of when a Contact/Animal team started
and ended so that I always know who volunteered there in the past and who is
currently volunteering there now (that's the Contact specific info I want to
write). But I can't seem to write this Contact/Aninmal specific data along
with the default data. The main form is based on Contact and the subform is
as below.
Animals
AnimalsID
Volunteering
VolunteeringID
VolunteerName
VolunteerOngoing
Event
EventVolunteerID
ContactID
VolunteeringID
AnimalsID
SELECT Event.*, VolunteerOngoing, Volunteering.VolunteerName
FROM (Event LEFT JOIN Animals ON Event.AnimalsID = Animals.AnimalsID) INNER
JOIN Volunteering ON Event.VolunteeringID = Volunteering.VolunteeringID
WHERE (((Volunteering.VolunteerOngoing)=Yes));
I've tried to add a table for specific Contact-Volunteer Detail info. I've
tried to modify existing tables to add the detail info... Can it be done?
I'd appreciate any suggestions. This is the big showstopper in my database
design.