OK I have a shipping dB. I have several data fields, only 3 are important for this.
1) Date_Shipped_out
2) Carrier
3) Date returned
Items 1 and 3 are in date format. (11/01/01)
I have a query that I want to subtract the date_shipped_out from the Date_returned and get the # of days between the 2 days.
Here is the code in the query I am using:
(Select Datediff("d", [Date_Shipped],- [Date_Returned]) As Num_Of_Days From [Shipping Authorization Log Sheet])
This is not working for me.
I would appreciate any and all help to resolve this issue.
Thanks a Million in advance...
1) Date_Shipped_out
2) Carrier
3) Date returned
Items 1 and 3 are in date format. (11/01/01)
I have a query that I want to subtract the date_shipped_out from the Date_returned and get the # of days between the 2 days.
Here is the code in the query I am using:
(Select Datediff("d", [Date_Shipped],- [Date_Returned]) As Num_Of_Days From [Shipping Authorization Log Sheet])
This is not working for me.
I would appreciate any and all help to resolve this issue.
Thanks a Million in advance...