Hello,
I was trying to compare to see whether a date is later than 01/01/1900, and include the date only if it is, I ended up having the following code:
	
	
	
		
However, I ended up having an error saying that data type mismatch expression...
I checked the Birthdate field, and it is Date/Time field.....
Anyone could help?
Thanks!
Regards,
Anyi
 I was trying to compare to see whether a date is later than 01/01/1900, and include the date only if it is, I ended up having the following code:
		Code:
	
	
	...
(([Transactions].BirthDate) Is Not Null) AND (DateValue([Transactions].BirthDate) > #01/01/1900#)) ...;
	I checked the Birthdate field, and it is Date/Time field.....
Anyone could help?
Thanks!
Regards,
Anyi