A
A.M
Hi,
In following query, access gives me error: "Operation must use an updatable
query"
qryLinePerInvoice is read only but i am not writing anything on it.
tblSavedInvoices is regular writable table.
UPDATE tblSavedInvoices
SET tblSavedInvoices.Lines =
(
select [qryLinePerInvoice].[Lines] from qryLinePerInvoice where
tblSavedInvoices.invoice_no = qryLinePerInvoice.invoice_no
);
If i cahnge the query to the following form, still i have same problem:
UPDATE tblSavedInvoices INNER JOIN qryLinePerInvoice ON
[tblSavedInvoices].[invoice_no]=[qryLinePerInvoice].[invoice_no] SET
tblSavedInvoices.Lines = [qryLinePerInvoice].[Lines];
Any help would be appreciated,
Ali
In following query, access gives me error: "Operation must use an updatable
query"
qryLinePerInvoice is read only but i am not writing anything on it.
tblSavedInvoices is regular writable table.
UPDATE tblSavedInvoices
SET tblSavedInvoices.Lines =
(
select [qryLinePerInvoice].[Lines] from qryLinePerInvoice where
tblSavedInvoices.invoice_no = qryLinePerInvoice.invoice_no
);
If i cahnge the query to the following form, still i have same problem:
UPDATE tblSavedInvoices INNER JOIN qryLinePerInvoice ON
[tblSavedInvoices].[invoice_no]=[qryLinePerInvoice].[invoice_no] SET
tblSavedInvoices.Lines = [qryLinePerInvoice].[Lines];
Any help would be appreciated,
Ali