thanks for the quick reply. the query will not allow edits, either. I'm
super-new to this and you asked me to post an SQL statement. If it's not
what
you're asking for, please let me know. The problem occurs when I add the
"tblClientSiteContacts" table to the query. Here's the statement:
SELECT tblClientInformation.tblU2ClientID,
tblClientInformation.citblCompanyName,
tblClientInformation.citblContactName,
tblClientInformation.citblContactTitle, tblClientInformation.citblAddress,
tblClientInformation.citblCity, tblClientInformation.citblState,
tblClientInformation.citblZipCode, tblClientInformation.citblWorkPhone,
tblClientInformation.citblExt, tblClientInformation.citblCellPhone,
tblClientInformation.citblFaxNumber, tblClientInformation.citblEmail,
tblWorkOrders.[wotblWorkOrder#], tblWorkOrders.wotblCompanyName,
tblWorkOrders.wotblDate, tblWorkOrders.wotblTime,
tblWorkOrders.[wotblJob#],
tblWorkOrders.[wotblPO#], tblWorkOrders.wotblJobDescription,
tblWorkOrders.wotblLocation, tblWorkOrders.wotblServicesRequested,
tblWorkOrders.wotblAdditionalInformation,
tblWorkOrders.wotblInitiallyAssignedTo
FROM tblClientSiteContacts RIGHT JOIN (tblClientInformation INNER JOIN
tblWorkOrders ON
tblClientInformation.tblU2ClientID=tblWorkOrders.wotblCompanyName) ON
tblClientSiteContacts.tblCompanyName=tblClientInformation.citblCompanyName
ORDER BY tblWorkOrders.[wotblWorkOrder#];
tina said:
the problem is probably in the RecordSource query, not in the form
itself.
not all multi-table queries are updateable. try opening the query by
itself - will it allow you to add a record? if not, suggest you post the
query's SQL statement so we can look at it.
hth