Give this a try.SELECT
P.Client_ID
, C.Client_Name
, P.Year
, P.Code
, P.FileNumber
, P.ProposalPhase
, P.JobPhase
, P.Active
, P.WorkDescription
, P.Project_opened
, H.F_Name
, H.L_Name
FROM HFP_Personnel AS H
RIGHT JOIN (Client AS C
INNER JOIN Projects AS P ON
C.Client_ID =...