Great.
Now add the field to this RecordSource statement. For example, if the new
field was added to tblCustomerCallLog and was called MyNewField:
SELECT DISTINCTROW [tblcustomercalllog].[ContactID],
[tblcustomercalllog].[Date],
[tblcustomercalllog].[Queries open/closed],
[tblcustomercalllog].[coast/oasis],
[tblcustomercalllog].[Person Dealing],
[tblcustomercalllog].[FirstName],
[tblcustomercalllog].[LastName],
[tblcustomercalllog].[Address],
[tblcustomercalllog].[City],
[tblcustomercalllog].[PostalCode],
[tblcustomercalllog].[WorkPhone],
[tblcustomercalllog].[Product Code],
[tblcustomercalllog].[Problem],
[tblcustomercalllog].[Store No],
[tblcustomercalllog].[ContactTypeID],
[tblcustomercalllog].[Action Required],
[tblcustomercalllog].[GV's],
[tblcustomercalllog].[Refund],
[tblcustomercalllog].[Send for QC],
[tblcustomercalllog].[Store Contact Name],
[tblcustomercalllog].[Store Address],
[tblcustomercalllog].[Store Tel No],
[tblcustomercalllog].[MyNewField],
[Store Details].[Coast/Oasis],
[Store Details].[StoreNo],
[Store Details].[StoreNme],
[Store Details].[StoreAdd],
[Store Details].[StoreTel]
FROM ([Store Details] INNER JOIN [tblcustomercalllog]
ON [Store Details].[StoreNo] =[tblcustomercalllog].[Store No]);
Beside the RecordSource property, there is a Build button which will open
this in query design view if you prefer to add the field that way.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
matthew said:
SELECT DISTINCTROW [tblcustomercalllog].[ContactID],
[tblcustomercalllog].[Date], [tblcustomercalllog].[Queries open/closed],
[tblcustomercalllog].[coast/oasis], [tblcustomercalllog].[Person Dealing],
[tblcustomercalllog].[FirstName], [tblcustomercalllog].[LastName],
[tblcustomercalllog].[Address], [tblcustomercalllog].[City],
[tblcustomercalllog].[PostalCode], [tblcustomercalllog].[WorkPhone],
[tblcustomercalllog].[Product Code], [tblcustomercalllog].[Problem],
[tblcustomercalllog].[Store No], [tblcustomercalllog].[ContactTypeID],
[tblcustomercalllog].[Action Required], [tblcustomercalllog].[GV's],
[tblcustomercalllog].[Refund], [tblcustomercalllog].[Send for QC],
[tblcustomercalllog].[Store Contact Name], [tblcustomercalllog].[Store
Address], [tblcustomercalllog].[Store Tel No], [Store
Details].[Coast/Oasis], [Store Details].[StoreNo], [Store
Details].[StoreNme], [Store Details].[StoreAdd], [Store Details].[StoreTel]
FROM ([Store Details] INNER JOIN [tblcustomercalllog] ON [Store
Details].[StoreNo] =[tblcustomercalllog].[Store No]);