I know there are a bunch of questions on here dealing of unsupported join expressions, I just can't find one that refers to my situation.
My query looks like this :
SELECT T1.*, T2.Year, T3.Force, T4.Group AS myGroup
FROM ((AllQuestions AS T1
INNER JOIN Years AS T2 ON T1.ID_Year = T2.ID)
INNER JOIN Forces AS T3 ON T1.Questions_Force = T3.ID)
INNER JOIN Groups AS T4 ON T4.ID = " & (Me.Texte423) & "
ORDER BY Categories, T1.Questions;
As you can see on line refering to T4, I'm trying to match the ID in table Groups to match a value from a textbox in a report (it might be important to mention).
The error i'm getting looks like : JOIN expression not supported. "looks" because i'm using a french version of Access, so it's a basic translation...
What am I doing wrong please?