Calculating between two working days in a form.

scgoodman

scgoodman
Local time
Today, 10:54
Joined
Jun 6, 2008
Messages
87
I have three data fields in my form. Shipped Date, Delivered Date and Turn Around Time.
I need to calculate the Shipped Date and Delivered Date and populate it in the TAT field.
 
In the Control Source for TAT put

Code:
=DeliveredDate-ShippedDate

The TAT should be a calculated field and should not be stored in your table, as it can be calculated whenever it is required from the other two fields.
 
In the Control Source for TAT put

Code:
=[DeliveredDate]-[ShippedDate]

The TAT should be a calculated field and should not be stored in your table, as it can be calculated whenever it is required from the other two fields.
 

Users who are viewing this thread

Back
Top Bottom