Hi I'm trying to add a third table to my query but I am getting a symtax error. Can anyone show me how to fix it.
strSQL = "Select * FROM [tbltruststaff] LEFT JOIN [Service Descriptions] ON [tbltruststaff].DIV = [Service Descriptions].D_DIV LEFT JOIN [Discipline Descriptions] ON [tbltruststaff].DISCIPLINE = [Discipline Descriptions].D_DISCIPLINE" _
It works well with the first left join but not the second.
strSQL = "Select * FROM [tbltruststaff] LEFT JOIN [Service Descriptions] ON [tbltruststaff].DIV = [Service Descriptions].D_DIV LEFT JOIN [Discipline Descriptions] ON [tbltruststaff].DISCIPLINE = [Discipline Descriptions].D_DISCIPLINE" _
It works well with the first left join but not the second.