R
Rachel
I have a form we use for tracking annual policy
information. We enter the effective date and it
calculates the expiration date by adding 365 days.
Because of this being a leap year, any policy term that
crosses over 2/29/04 has an expiration date that is 1 day
short. This is causing all kinds of problems. Does
anyone have a solution? Here is the current code:
Private Sub WC_Exp_Can_Enter()
If [wc eff] > 0 Then
[wc exp/can] = [wc eff] + 365
End If
End Sub
information. We enter the effective date and it
calculates the expiration date by adding 365 days.
Because of this being a leap year, any policy term that
crosses over 2/29/04 has an expiration date that is 1 day
short. This is causing all kinds of problems. Does
anyone have a solution? Here is the current code:
Private Sub WC_Exp_Can_Enter()
If [wc eff] > 0 Then
[wc exp/can] = [wc eff] + 365
End If
End Sub