Design by Sue
Registered User.
- Local time
- Yesterday, 21:41
- Joined
- Jul 16, 2010
- Messages
- 816
Below is the SQL view of the query which is resulting in this error message. This is one one of 2 subforms on my mainform. The first subform has a similar query based on a different table and created the same as this one and that one does not result in the error. Is this enough information to see the problem??
SELECT [Components Combination TBL].Prepack, [Components Combination TBL].Component, [Components Combination TBL].CQuantity, [Components TBL].Description, [Components TBL].[Inventory Type]
FROM [Components TBL] INNER JOIN [Components Combination TBL] ON [Components TBL].[Components ID] = [Components Combination TBL].Component
WHERE ((([Components Combination TBL].Prepack)=[Forms]![Combinations FRM]![Prepack ID]))
ORDER BY [Components TBL].Description;
Thanks
Sue
SELECT [Components Combination TBL].Prepack, [Components Combination TBL].Component, [Components Combination TBL].CQuantity, [Components TBL].Description, [Components TBL].[Inventory Type]
FROM [Components TBL] INNER JOIN [Components Combination TBL] ON [Components TBL].[Components ID] = [Components Combination TBL].Component
WHERE ((([Components Combination TBL].Prepack)=[Forms]![Combinations FRM]![Prepack ID]))
ORDER BY [Components TBL].Description;
Thanks
Sue