G
good12find
I have three tables that I need joined and still be able to edit the data in
a query.
The primary table has the joining field as the key field and the other
secondary tables are autonumbered key fields with the joining field as a
standard field.
I can join either of the two tables separately with the primary table and
edit without any problem. I only need to edit data in the secondary tables.
Once I add the 3rd table, it locks all edits in the query.
I have tried pretty much everything I can think of to get this to work.
Is there any way possible to get this to work. It would save me.
Here is the SQL from primary and one secondary - edits fine.
SELECT [Peachtree Purchase History].[PO No], [Peachtree Purchase History /
Notes].[Part Note], [Peachtree Purchase History / Notes].[Proforma Received],
[Peachtree Purchase History / Notes].[Proforma Received Date], [Peachtree
Purchase History / Notes].GUID, [Peachtree Purchase History].GUID
FROM [Peachtree Purchase History] LEFT JOIN [Peachtree Purchase History /
Notes] ON [Peachtree Purchase History].GUID = [Peachtree Purchase History /
Notes].GUID;
And here is the SQL with the 2nd secondary table added - no editing.
SELECT [Peachtree Purchase History].[PO No], [Peachtree Purchase History /
Notes].[Part Note], [Peachtree Purchase History / Notes].[Proforma Received],
[Peachtree Purchase History / Notes].[Proforma Received Date], [Peachtree
Purchase History / Notes].GUID, [Peachtree Purchase History].GUID, [Vendor
Shipments/Parts].[Qty Shipped]
FROM ([Peachtree Purchase History] LEFT JOIN [Peachtree Purchase History /
Notes] ON [Peachtree Purchase History].GUID = [Peachtree Purchase History /
Notes].GUID) LEFT JOIN [Vendor Shipments/Parts] ON [Peachtree Purchase
History].GUID = [Vendor Shipments/Parts].[PO GUID];
Please let me know - thank you!!
a query.
The primary table has the joining field as the key field and the other
secondary tables are autonumbered key fields with the joining field as a
standard field.
I can join either of the two tables separately with the primary table and
edit without any problem. I only need to edit data in the secondary tables.
Once I add the 3rd table, it locks all edits in the query.
I have tried pretty much everything I can think of to get this to work.
Is there any way possible to get this to work. It would save me.
Here is the SQL from primary and one secondary - edits fine.
SELECT [Peachtree Purchase History].[PO No], [Peachtree Purchase History /
Notes].[Part Note], [Peachtree Purchase History / Notes].[Proforma Received],
[Peachtree Purchase History / Notes].[Proforma Received Date], [Peachtree
Purchase History / Notes].GUID, [Peachtree Purchase History].GUID
FROM [Peachtree Purchase History] LEFT JOIN [Peachtree Purchase History /
Notes] ON [Peachtree Purchase History].GUID = [Peachtree Purchase History /
Notes].GUID;
And here is the SQL with the 2nd secondary table added - no editing.
SELECT [Peachtree Purchase History].[PO No], [Peachtree Purchase History /
Notes].[Part Note], [Peachtree Purchase History / Notes].[Proforma Received],
[Peachtree Purchase History / Notes].[Proforma Received Date], [Peachtree
Purchase History / Notes].GUID, [Peachtree Purchase History].GUID, [Vendor
Shipments/Parts].[Qty Shipped]
FROM ([Peachtree Purchase History] LEFT JOIN [Peachtree Purchase History /
Notes] ON [Peachtree Purchase History].GUID = [Peachtree Purchase History /
Notes].GUID) LEFT JOIN [Vendor Shipments/Parts] ON [Peachtree Purchase
History].GUID = [Vendor Shipments/Parts].[PO GUID];
Please let me know - thank you!!