On the current form I have the Before Update set to the following code:
Private Sub ControlName_BeforeUpdate(Cancel As Integer)
Me.ControlName.DefaultValue = "'" & ControlName& "'"
End Sub
This works great; however, is there way to change this...
Example:
Label1 Label2 Label 3 Label4
Record 1: Control1 Control2 Control3 Control4
Record 2: Control1 Control2 Control3 Control4
Once I enter data in Record 1 Control2 and move to Control3...Control2 of record 2 is automatically filled with same data as Record 1 Control2
Is there a way to prevent this occurrence until I actually move to Record 2?