M
mscertified
I have a subform based on a query that will not allow me to edit the data.
Does this mean the query is not updatable? Is there a way to confirm this? My
query is:
SELECT TD.*, DT.*
FROM tblTicketData AS TD, tblTicketDataType AS DT
WHERE TD.DTID = DT.ID;
and I am trying to update a column in tblTicketData
Does this mean the query is not updatable? Is there a way to confirm this? My
query is:
SELECT TD.*, DT.*
FROM tblTicketData AS TD, tblTicketDataType AS DT
WHERE TD.DTID = DT.ID;
and I am trying to update a column in tblTicketData