I need to add to the below me.paymenttype = cash or check
me.totalamoutdue = "cashprice"
I tried to enter it before the else and before the end if.
Private SubPaymentType_AfterUpdate()
IfMe.PaymentType = "FINANCED" Then
Me.TotalAmountDue= Me.FinancedPrice
Else
Me.PaymentType= "CREDIT"
Me.TotalAmountDue= Me.FinancedPrice
End If
End Sub