The 'tab' on the keyboard, Say I enter in 100 and then click tab, in previous 2000 version it would update the other column (Interest) by simply putting the above input statement.
Previously I've done it via "Data --> Control Source --> IIF statement. Now when I do that, it doesn't do it when I tab, it does it after I click back to that record.
The following code which I adjusted to equal your example works in a way, but when I put in a new record, the new number gets spread to all the interest field. When I put in a new record, I need it to stay that number unless I change that records, Amount Finance.
Code:
Private Sub Loan_AfterUpdate()
If Me.Pawn = 1 Then
Me.Text107 = Me.Loan * 0.25
Else
Me.Text107 = 0
End If
End Sub