G
Guest
Hello,
I am trying to update a field only if it has no information in it already,
here is what I have...
Private Sub TxtSublot_GotFocus()
If [TxtSublot] = Null Then
[TxtSublot] = [txtLotNumber] + "-"
End If
End Sub
This does not seem to be working. I also tried...
If [TxtSublot] = ""
Any ideas on where I'm going wrong?
I am trying to update a field only if it has no information in it already,
here is what I have...
Private Sub TxtSublot_GotFocus()
If [TxtSublot] = Null Then
[TxtSublot] = [txtLotNumber] + "-"
End If
End Sub
This does not seem to be working. I also tried...
If [TxtSublot] = ""
Any ideas on where I'm going wrong?