I've built a query that executes flawlessly and displays all the information I need it to. However, when I want to display information from that query on a report, I get an error stating that "The specified field '[Ship To #].[Street Address Line 2]' could refer to more than one table listed in the FROM clause of your SQL statement.
I've searched around to see if I can find solutions, but nothing helpful.
I'm not sure if this helps, but here's the query's SQL:
Thanks for looking into this!
I've searched around to see if I can find solutions, but nothing helpful.
I'm not sure if this helps, but here's the query's SQL:
Code:
SELECT [Generation table].[Ship to], [Ship To #].Name, [Ship To #].[Street Address Line 2], [Generation table].[Pallet Quantity], [Generation table].[Shipment #], Numbers.Field1, [Generation table].[Ship From], [Ship From].Name, [Ship From].[Street Address], [Ship From].[Street Address Line 2]
FROM Numbers, ([Ship To #] INNER JOIN [Generation table] ON [Ship To #].[Buyer #] = [Generation table].[Ship to]) INNER JOIN [Ship From] ON [Generation table].[Ship From] = [Ship From].[Buyer #]
WHERE (((Numbers.Field1)<=[Pallet Quantity]))
ORDER BY Numbers.Field1;
Thanks for looking into this!
