I have the following SQL
SELECT P1.Column1, P1.NextApprovalDate
FROM Procedures P1
WHERE DATESERIAL(YEAR(P1.NextApprovalDate), MONTH(P1.NextApprovalDate), 1 )
= DATESERIAL(YEAR(Date()), MONTH(DATE()) + 1, 1);
I get an error which is "Data type mismatch in criteria expression". I tried using the CDate and the Format functions in conjunction as well but continue to get the same error. The SQL runs fine when I am selecting the criteria there. How should the criteria be formatted?
Ok. I got this to work but it is kind of weird the way Access wanted it. The = sign never worked for the comparison. Why I don't know. The BETWEEN worked. If someone could find a way to make the '=' work, do let me know. Thanks to @Hansup for pointing me in the right direction.