OK, I simplified my query to
Code:
SELECT DISTINCTROW Sum([partstore Query].[qty]) AS Lodge
FROM [partstore Query]
WHERE (((partstore.binid) Like "L*"));
This works when i run it to test it.
I am creating a form with a sub form from two querys. Parts and partstore if I do that it works.
I want to add a query to that form. The text of the query is listed as code above. When i try to add it in form wizard, i get the following error: "You have chosen fields from record sources which the wizard can't connect. You may have chosen fields from a table and from a query based on that table. If so, try choosing fields from only the table or only the query."
All the data I'm using is from querys. What concept am i not grasping?