Trouble with code getting data mismatch. I can’t see it. Can you help?
SELECT tblCertificationDates.Date, tblCertificationTypes.Renewed, DateSerial(Year([tblCertificationDates.Date])+([Renewed]),Month([tblCertificatio
nDates.Date]),Day([tblCertificationDates.Date])) AS Due, tblCertificationDates.LearnerID, tblCertificationDates.Type
FROM tblCertificationTypes INNER JOIN tblCertificationDates ON tblCertificationTypes.Certifications = tblCertificationDates.Type
WHERE (((DateSerial(Year([tblCertificationDates.Date])+([Renewed]),Month([tblCertifica
tionDates.Date]),Day([tblCertificationDates.Date])))>=Now()));
Thank you. Fay