Reputation: 91
I'm using the DateDiff()
function to calculate an age.
Dim a As Double
a = DateDiff("d", Me.Age, Me.ApptDate) / 365
I want to get the truncated value and NOT the rounded value.
I just want the whole number - No decimals.
How can I do this?
Upvotes: 1
Views: 991