DateDiff does not return me correct date difference in years :
Dim dtDate1 AsDate
Dim DOB AsDate
DOB = #12/31/2000#
dtDate1 = #1/1/2005#
datediff(DateInterval.Year,dob,dtdate1) returns 5. It should return 4.
It must be using "Ceil" function internally.
What say?
Dim dtDate1 AsDate
Dim DOB AsDate
DOB = #12/31/2000#
dtDate1 = #1/1/2005#
datediff(DateInterval.Year,dob,dtdate1) returns 5. It should return 4.
It must be using "Ceil" function internally.
What say?