[MS ACCESS] Join expression not supported with LEFT JOIN

Argh. Typo…of COURSE you’d find it.

I meant to say change the AND to ON since the first LEFT JOIN seemed to allow for it (though it made no sense to me how it worked)

But it looks like the answer is simpler, and Rudy has already posted it in an earlier thread. Wrap the two conditions in parenthesis…

So, the condition would be

INNER JOIN dbo_FacturesClientsArticles ON ([dbo_Factures Clients].NoFacture=dbo_FacturesClientsArticles.NoFacture AND dbo_Articles.NoArticle=dbo_FacturesClientsArticles.NoArticle)