cMcDowell23
New member
- Local time
- Today, 16:47
- Joined
- Jan 24, 2023
- Messages
- 8
I have a Query and a form that uses this Query for a Purchase Order database for our company. We had this same database created for us a long time ago and throughout the years there has been changes we made that has now rendered the old database unusable. Now I am recreating the database based off the old one with a few tweaks. Now I have a query that is not updateable and can't figure out for the life of me why it isn't working... I have compared the SQL code to the old database SQL code but it hurts my brain because I have named things differently.
Long story short, I need the query to pull all the information and have the combo boxes pull up the lists of data and be able to select a new record if required.
Here is the SQL code for my query:
SELECT [Work Entry Summary].[PO#], [Work Entry Summary].Date, [Work Entry Summary].Customer, [Work Entry Summary].Requestor, [Work Entry Summary].[Scope Of Work], [Work Entry Summary].[Panel Invoice #], [Work Entry Summary].[Quote #], [Work Entry Summary].Status, [Work Entry Summary].[Customer PO/WO#], [Work Entry Summary].Location
FROM (([Work Entry Summary] INNER JOIN [Total Info Part 1 Query] ON [Work Entry Summary].[PO#] = [Total Info Part 1 Query].[PO#]) INNER JOIN [Total Info Part 2 Query] ON [Total Info Part 1 Query].[PO#] = [Total Info Part 2 Query].[PO#]) INNER JOIN [Total Info Final Query] ON [Total Info Part 2 Query].[PO#] = [Total Info Final Query].[PO#]
ORDER BY [Work Entry Summary].[PO#];
Let me know if you need any further information.
Long story short, I need the query to pull all the information and have the combo boxes pull up the lists of data and be able to select a new record if required.
Here is the SQL code for my query:
SELECT [Work Entry Summary].[PO#], [Work Entry Summary].Date, [Work Entry Summary].Customer, [Work Entry Summary].Requestor, [Work Entry Summary].[Scope Of Work], [Work Entry Summary].[Panel Invoice #], [Work Entry Summary].[Quote #], [Work Entry Summary].Status, [Work Entry Summary].[Customer PO/WO#], [Work Entry Summary].Location
FROM (([Work Entry Summary] INNER JOIN [Total Info Part 1 Query] ON [Work Entry Summary].[PO#] = [Total Info Part 1 Query].[PO#]) INNER JOIN [Total Info Part 2 Query] ON [Total Info Part 1 Query].[PO#] = [Total Info Part 2 Query].[PO#]) INNER JOIN [Total Info Final Query] ON [Total Info Part 2 Query].[PO#] = [Total Info Final Query].[PO#]
ORDER BY [Work Entry Summary].[PO#];
Let me know if you need any further information.