I have made the following query :
SELECT [tbl_Imp_tabel WBS WPE.Verantwrd], [tbl_Imp_tabel WBS WPE.WBS_Id], [tbl_Imp_tabel WBS WPE.Koptekst], [tbl_Users.UserName], [tbl_Users.WPENaam]
FROM [tbl_Imp_tabel WBS WPE]
INNER JOIN [tbl_Users]
ON tbl_Imp_tabel WBS WPE.Verantwrd = tbl_Users.WPENaam ;
Howver, my access tells me that i have a missing operator on the line :
ON tbl_Imp_tabel WBS WPE.Verantwrd = tbl_Users.WPENaam ;
Any idea how to solve this ?
Thanks in advance