Here's the code:
SELECT qryNameCreation.CombinedName, tblFileProp.FileName, DateAdd("yyyy",2,CDate([Comments])) AS ReviewDueDate, tblFileProp.Title, tblFileProp.Author, tblEmployee.Email
FROM (tblEmployee INNER JOIN qryNameCreation ON tblEmployee.Employee_ID = qryNameCreation.Employee_ID)...