I have 3 tables: tblCompanyInfo ; tblProducts ; and tblSalesLog. They are each related to one another by the ID field (Autonumber). I have a main form to enter the Company info. and then 2 subforms which tracks Products and Sales. The Products and Company info. only ever has to be entered once. The Sales info. changes day by day. I have this setup as a continuous form and each time an update is made, a new record is created. The fields updated are: txtLogDate, txtMetWithContact (Yes or No filled in from a Combo box), and txtComments. It is ONLY these three fields, from tblSalesLog, that I want to send via email to a supervisor each day. However I only want to send the most recent updates to C:\DailyLog.xls. When I run the code to send the e-mail, it basically contains the updated data along with the previously entered data.
I hope this is not too confusing. Thanks !