date differences

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Beginner please bear with me.

I would like to run a query to show the difference in weeks between 2 dates.
eg 29/9/04 and today.

can someone please tell me how to do this
 
Add a new column to your query.

In the "FIELD:" put the following....

Duration: DateDiff("w",[hiredate],Date())

You can change the name (duration) to anything you want. You can change the
"HireDate" to your field name.
 
Back
Top