W
weircolin
Hi There
I have a database which has the means to record people's attendance at
events. I have set this us, through guidance, by having three tables,
Main person list, Events and Attended.
It is set up intiially that the Attended Table has got two "Lookups"
from it, one getting the people's names from the main table (well
query of this to sort them) and the other is the events table.
I have queries and forms controlling this data.
When the field on the "Attended" table that stores the person's name
is used, it'll only store theirfirst name. I have set it up so people
can go back and review who attended what event and this would then be
more difficult to do when there is only the person's first name
showing. Therefore I set the following in the Row Source of the table
SELECT [Members Names].FirstName+' '+[Members Names].LastName,
[Members Names].LastName, [Members Names].PersonID FROM [Members
Names];
This then works fine and both names now apprear in the field.
However, I have set it that there is a subform on each person's record
that displays a list of events that they have attended. When I leave
it that the Person field only displays one name, this works, but when
I change it to the above, the subform doesn't work when I select a new
event for the person.
Does anyone have any thoughts on what could be wrong here?
Thanks
Colin
I have a database which has the means to record people's attendance at
events. I have set this us, through guidance, by having three tables,
Main person list, Events and Attended.
It is set up intiially that the Attended Table has got two "Lookups"
from it, one getting the people's names from the main table (well
query of this to sort them) and the other is the events table.
I have queries and forms controlling this data.
When the field on the "Attended" table that stores the person's name
is used, it'll only store theirfirst name. I have set it up so people
can go back and review who attended what event and this would then be
more difficult to do when there is only the person's first name
showing. Therefore I set the following in the Row Source of the table
SELECT [Members Names].FirstName+' '+[Members Names].LastName,
[Members Names].LastName, [Members Names].PersonID FROM [Members
Names];
This then works fine and both names now apprear in the field.
However, I have set it that there is a subform on each person's record
that displays a list of events that they have attended. When I leave
it that the Person field only displays one name, this works, but when
I change it to the above, the subform doesn't work when I select a new
event for the person.
Does anyone have any thoughts on what could be wrong here?
Thanks
Colin