I have the following query and when I attempt to view it in Design Mode I get the error: "Microsoft Access can’t represent the join expression". I kow that parentheses can cause this issue, but I don't see any extra parentheses included in this query. Any help is greatly appreciated.
Code:
SELECT * FROM [Summary File] INNER JOIN [Number Reference]
ON ([Summary File].[SALE NAME] = [Number Reference].[Number ID]) OR ([Summary File].[SALE NAME] = [Number Reference].[Alternate ID])
WHERE ([Number Reference].[Service Number]=[forms]![Maverick Data].[svcnumber1]);