Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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