Count the number of days

medranoestraaadriana

Registered User.
Local time
Yesterday, 23:14
Joined
Jul 6, 2010
Messages
23
I have a query with a starting date and an ending date. I need a day count of the total number of days. For example if the starting day is 11/01/10 and the ending day is 11/04/10, I need a formula that would give met the total number of days in these period.

Help Please.
 
Create a new field in the query

eg NumDays: Datediff("d",date1,date2)

Brian
 
It does not let me do it, I get the following error message. "This expression is typed incorrectly, or it is too complex to be evakyated"
 
No, there is no criteria in the field you type

Code:
NumDays: DateDiff("d",[Inventory Date],[Exit Date])
Brian
 

Users who are viewing this thread

Back
Top Bottom