I have a form where I use an If statement. It basically goes like this:
Private Sub AttorneyFileNumber_AfterUpdate()
If Me.AttorneyFileNumber & "" = "ES" Then
Me!Fee = "15.00"
Else
Me!Fee = "12.00"
End If
End Sub
On the same form I have a check box called "RUSH", that when it is checked (True) I want it to add $5.00 to the "Fee" field. What is the easiest way to do this?
Private Sub AttorneyFileNumber_AfterUpdate()
If Me.AttorneyFileNumber & "" = "ES" Then
Me!Fee = "15.00"
Else
Me!Fee = "12.00"
End If
End Sub
On the same form I have a check box called "RUSH", that when it is checked (True) I want it to add $5.00 to the "Fee" field. What is the easiest way to do this?