Private listVal As Variant
Private Sub Form_Current()
If Me.NewRecord And Not Trim(listVal & " ") = "" Then
List11.Value = listVal
End If
End Sub
Private Sub Form_Open(Cancel As Integer)
listVal = list11.value
End Sub
Private Sub List11_BeforeUpdate(Cancel As Integer)
listVal = List11.Value
End Sub