you could put it in the AfterUpdate property for the field that you're entering data into.<br>
<br>
basically, if both fields are formatted as date fields, the code could be as simple as<br>
<br>
Private Sub OriginalDateField_AfterUpdate()<br>
CalculatedDateField = OriginalDateField +14<br>
end sub<br>
<br>
if you want to only count business days (Mon-Fri) you would have to use something similar to this:<br>
<br>
If Weekday + 14 = 1 Or Weekday + 14 = 7 Then<br>
If Weekday + 3 = 1 Then<br>
CalculatedDatefield = OriginalDateField + 15<br>
End If<br>
If Weekday + 3 = 7 Then<br>
CalculatedDatefield = OriginalDateField + 15<br>
End If<br>
Else<br>
BusDays = RecdDate + 14<br>
End If<br>
<br>
where 'Weekday' is the name of an unbound field on your form that has a control of <br>
=Weekday([OriginalDateField])<br>
<br>
<br>
<p>Brian Famous<br><a href=mailto:bfamous@ncdoi.net>bfamous@ncdoi.net</a><br><a href= > </a><br>