P
prairiewind via AccessMonster.com
I was suggested to use only one table from my project. The reason is that I
want to break it apart by different queries, send the individual tables to
the different field reps, they update the information, send back the tables
and then with a UnionQuery, combine the information into one table. That all
works find, but I can't seem to get my forms to work. What I have is three
levels of information; Field, Meeting, and Person Data. I can have a
Meeting_Subform that works and updates fine when I change between Fields.
But I can't seem to be able to enter a PersonData_Subform within the
Meeting_Subform that would show the people and their contact information that
was at each meeting.
My query that I have the PersonData_Subform based on reads as follows:
SELECT *
FROM tblCombinedData
WHERE (((tblCombinedData.MeetingName)=[Forms]![Meeting subform].[MeetingName])
)
ORDER BY tblCombinedData.PersonOrder;
However, when open the form, it wants me to enter the Parameter "Forms!
Meeting subform.MeetingName".
As far as I understand, a person can have multiple levels of subforms, but
obviously I'm doing something wrong.
Thank you.
want to break it apart by different queries, send the individual tables to
the different field reps, they update the information, send back the tables
and then with a UnionQuery, combine the information into one table. That all
works find, but I can't seem to get my forms to work. What I have is three
levels of information; Field, Meeting, and Person Data. I can have a
Meeting_Subform that works and updates fine when I change between Fields.
But I can't seem to be able to enter a PersonData_Subform within the
Meeting_Subform that would show the people and their contact information that
was at each meeting.
My query that I have the PersonData_Subform based on reads as follows:
SELECT *
FROM tblCombinedData
WHERE (((tblCombinedData.MeetingName)=[Forms]![Meeting subform].[MeetingName])
)
ORDER BY tblCombinedData.PersonOrder;
However, when open the form, it wants me to enter the Parameter "Forms!
Meeting subform.MeetingName".
As far as I understand, a person can have multiple levels of subforms, but
obviously I'm doing something wrong.
Thank you.