I am trying to create a query consisting of 3 different tables. All tables have a relationship on the CustomerID field. My problem is that every variety of design I come up with, the query is still NOT updatable and I need it to be.
Here's the strange thing... When I create this query in the query design window and IF I exclude adding any fields from the [Recurring Charges] table, and then view its data , I cannot add/edit any data. But after opening the query and clicking on any column name and sort ascending/descending, after the refresh/resort, the data now IS updatable. Strange?!?!? But if I add back some fields from the [Recurring Charges] table, then regardless of the strange sorting issue above, the data is NOT updatable.
I have tried every variation on joins even though some returned results unusable, but nonetheless every variation was still NOT updatable.
Here is the query:
Any suggestions on modifications that WILL make this query updatable.
I tried keeping this as basic of a question as possible but if more information is needed I can provide it.
Thanks in advance.
Here's the strange thing... When I create this query in the query design window and IF I exclude adding any fields from the [Recurring Charges] table, and then view its data , I cannot add/edit any data. But after opening the query and clicking on any column name and sort ascending/descending, after the refresh/resort, the data now IS updatable. Strange?!?!? But if I add back some fields from the [Recurring Charges] table, then regardless of the strange sorting issue above, the data is NOT updatable.
I have tried every variation on joins even though some returned results unusable, but nonetheless every variation was still NOT updatable.
Here is the query:
Code:
SELECT [Updated Card Info].*, [Customers Extended].*, [Recurring Charges].*
FROM ([Updated Card Info] LEFT JOIN [Customers Extended] ON [Updated Card Info].[Customer ID] = [Customers Extended].ID) LEFT JOIN [Recurring Charges] ON [Customers Extended].ID = [Recurring Charges].[Customer ID];
Any suggestions on modifications that WILL make this query updatable.
I tried keeping this as basic of a question as possible but if more information is needed I can provide it.
Thanks in advance.