I get the following Runtime error Invalid bracketing of name ‘[tblSessions.DateOfClassStart]’,
I can’t find the error after multiple tries. I know it is head slapping simple, but…. Thank you. Fay
strSQL = “INSERT INTO tblCombRequiredCerts ( Renewed, Due, LearnerID, ClassName, DateOfClassStart )” & _
“SELECT tblCertificationTypes.Renewed, ” & _
“DateSerial(Year([tblCertificationDates.Date])+([Renewed]),Month([tblCertificationDates.Date]),Day([tblCertificationDates.Date])) ” & _
“AS Due, tblCertificationDates.LearnerID, tblCertificationDates.Type, tblCertificationDates.Date ” & _
“FROM tblCertificationTypes INNER JOIN tblCertificationDates ON tblCertificationTypes.Certifications = tblCertificationDates.Type ” & _
“WHERE ((([tblSession.DateOfClassStart])=Now()))”