Hi, I have this sub:
Private Sub PaidDate_AfterUpdate()
If [PaidDate] > [DueDate] + 3 Then
[LateFee] = [AmountDue] * 0.1
ElseIf [PaidDate] = [DueDate] Then
[LateFee] = "0"
End If
End Sub
If I wanted to apply another action such as:
If [PaidDate] = [DueDate] or [DueDate] + 3 Then
[Deliquent] = "No"
How would I go about that?
Thanks.
Fen
Private Sub PaidDate_AfterUpdate()
If [PaidDate] > [DueDate] + 3 Then
[LateFee] = [AmountDue] * 0.1
ElseIf [PaidDate] = [DueDate] Then
[LateFee] = "0"
End If
End Sub
If I wanted to apply another action such as:
If [PaidDate] = [DueDate] or [DueDate] + 3 Then
[Deliquent] = "No"
How would I go about that?
Thanks.
Fen