Here is what I have
SELECT articles.article, Min([purch]![ym_pu]) AS Expr1
FROM articles INNER JOIN purch ON articles.article = purch.art_pu;
GROUP BY articles.article
but I received the following error
'The LEVEL clause includes a reserved word or argument that is mispelled or missing , or the punctuation is incorrect.'
I have no clue what that means.