I have a table with about 500 records, the table is used for mailing purposes only. There is a Yes/No Field which if ticked to true mean's the record is on the mailing list.
I want to be able to save a selected list of records for future use. I thought I could do it with a make table query but I does'nt allow me to name the table.
I have tried the following code
SELECT tblMember.MemberID, tblMember.Mailout INTO [Enter a name for the New Table]
FROM tblMember
WHERE (((tblMember.Mailout)=-1));
It created a table called Enter a name for the New Table
I want to be able to save a selected list of records for future use. I thought I could do it with a make table query but I does'nt allow me to name the table.
I have tried the following code
SELECT tblMember.MemberID, tblMember.Mailout INTO [Enter a name for the New Table]
FROM tblMember
WHERE (((tblMember.Mailout)=-1));
It created a table called Enter a name for the New Table