calculating number of days

laurat

Registered User.
Local time
Today, 04:59
Joined
Mar 21, 2002
Messages
120
What expression would I use to calculate the number of days between two days.
Say one date field says 12/20/01 and the other says 1/20/02 and I want another field to display how many days are between these two date.
 
Try:-

DateDiff("d", Field1, Field2)
 
I tried that, here is what I put:

DateDiff ("d", Date Orig, RelFloorDate)

and it told me invalid syntax, what does that mean??
 
DateDiff("d",[Date Orig],[RelFloorDate])

Invalid syntax means you've buggered it up in some way.

HTH

Scott.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom