G
GIraffe
I had a table (tMeeting) originally with field names
ID [Autonumber & primary key]
LastName [Text]
FirstName [Text]
Address [Text]
InviteAccepted [Y/N]
MtgConfirmed {Y/N]
AttendMtg [Y/N]
Delete [Y/N]
I made various queries off of this table (who accepted the invite, who
attended meeting, deleted, etc.]. I used these queries as my data for
merging in to various MSWord files to provide to management.
A month ago, I learn we will be using this same data for another meeting
this year (& I conclude future meetings), I need to retain who
accepted/confirmed/attended last year’s meeting and then I need to know the
same information for this year’s meeting.
So I took this database with a single table and created 4 tables:
[tNames] (originally tMeeting)
ID [Autonumber & primary key]
LastName [Text]
FirstName [Text]
Address [Text]
Delete [Y/N]
[tMtgAcknowl]
Autonumber [Autonumber & primary key]
tNamesID [Number]
Meeting [Text]
Year [Number]
InviteAccept [Y/N]
Confirm [Y/N]
MtgAttend [Y/N]
[tMeeting]
Meeting [Text & primary key]
[tYear]
Year [Number & primary key]
In the properties of tMtgAcknowl for Meeting & Year, I setup the properties
for each of these fields to access the respective table.
In the relationship window, I have setup a link from tNames.ID to
tMtgAcknowl.tNamesID
I used a query to append my previous meeting data (invite, confirm, attend)
to the new subtable tMtgAcknowl. Once I confirmed the data was correct (with
another query), I deleted the data for last year's out of tNames.
I setup a form using tNames (form) & tMtgAcknowl (subform) so the meeting
data will show for each Name in my data entry form.
I created several queries that I know I’ll need to use to pull various
pieces of data. Using "view" I validate that the data I am pulling is
correct.
Here’s my problem:
When I try to setup a mail merge in MSWord, for the data source I choose the
file Meetings.mdb; however, only the tables appear, I have no access to the
queries (which is what I need).
Any thoughts on what is wrong? I’d appreciate any help you can give me.
Thank you.
ID [Autonumber & primary key]
LastName [Text]
FirstName [Text]
Address [Text]
InviteAccepted [Y/N]
MtgConfirmed {Y/N]
AttendMtg [Y/N]
Delete [Y/N]
I made various queries off of this table (who accepted the invite, who
attended meeting, deleted, etc.]. I used these queries as my data for
merging in to various MSWord files to provide to management.
A month ago, I learn we will be using this same data for another meeting
this year (& I conclude future meetings), I need to retain who
accepted/confirmed/attended last year’s meeting and then I need to know the
same information for this year’s meeting.
So I took this database with a single table and created 4 tables:
[tNames] (originally tMeeting)
ID [Autonumber & primary key]
LastName [Text]
FirstName [Text]
Address [Text]
Delete [Y/N]
[tMtgAcknowl]
Autonumber [Autonumber & primary key]
tNamesID [Number]
Meeting [Text]
Year [Number]
InviteAccept [Y/N]
Confirm [Y/N]
MtgAttend [Y/N]
[tMeeting]
Meeting [Text & primary key]
[tYear]
Year [Number & primary key]
In the properties of tMtgAcknowl for Meeting & Year, I setup the properties
for each of these fields to access the respective table.
In the relationship window, I have setup a link from tNames.ID to
tMtgAcknowl.tNamesID
I used a query to append my previous meeting data (invite, confirm, attend)
to the new subtable tMtgAcknowl. Once I confirmed the data was correct (with
another query), I deleted the data for last year's out of tNames.
I setup a form using tNames (form) & tMtgAcknowl (subform) so the meeting
data will show for each Name in my data entry form.
I created several queries that I know I’ll need to use to pull various
pieces of data. Using "view" I validate that the data I am pulling is
correct.
Here’s my problem:
When I try to setup a mail merge in MSWord, for the data source I choose the
file Meetings.mdb; however, only the tables appear, I have no access to the
queries (which is what I need).
Any thoughts on what is wrong? I’d appreciate any help you can give me.
Thank you.