Hi and Thanks for your help BUT the subform still doesn't
show all records again after the filter has been applied.
I have created a blank form with no fields and placed a
subform on it based on my mailing address query in
datasheet view (a total of 20 records), I then placed the
cbo box named cboLookup on the blank main form and linked
it to the subform child [CompanyName] and master
(cboLookup) links, this works fine to filter the subform
by company name but I can't show my original 20 records
back in datasheet view after the filter has been applied
to do a mass mailout.
I would appreciate any help on this as I am going nuts.
Thanking you in advance
Robert
-----Original Message-----
I have created a cbo box on a main form to filter records
in a subform. Does anyone know how I can show all records
again after the filter has been applied? I am using MS
Access 2002.
Several ways. Perhaps the easiest is a button with a line of code something
like:
DoCmd GoToControl "Name of Subform"
DoCmd.ShowAllRecords
.