I have looked over this code so long to find the error until my eyes are crossed. Could someone please review my code and see if you can determine why I’m getting the above error message?
strSQL = “SELECT ApVenTest.VenNumID, ApVenTest.VenName, Abs([GrossAmt]) AS GrsAmt” _ & “FROM ApTest INNER JOIN ApVenTest ON ApTest.VenNum = ApVenTest.VenNumID” _ & “GROUP BY ApVenTest.VenNumID, ApVenTest.VenName, Abs([GrossAmt])” _ & “HAVING (((Count(ApTest.GrossAmt))>1)) &;”
Thanks in advance for assistance.