C
ChrisG
How can I set a field value when a user opens form?
I want to set ShpQteType = "Pullbox" when a user opens form SHPQTE PB
Form uses a Query (ShpQte Query) to enter new data
I tried to do this using the Expression builder =[SHPQTE]![ShipQteType] =
"Pullbox" But I got an error.
Also Tried Code builder and it didn't set the value in the table.
Private Sub Form_Open(Cancel As Integer)
Dim shipQteType As String
shipQteType = "Pullbox"
End Sub
I want to set ShpQteType = "Pullbox" when a user opens form SHPQTE PB
Form uses a Query (ShpQte Query) to enter new data
I tried to do this using the Expression builder =[SHPQTE]![ShipQteType] =
"Pullbox" But I got an error.
Also Tried Code builder and it didn't set the value in the table.
Private Sub Form_Open(Cancel As Integer)
Dim shipQteType As String
shipQteType = "Pullbox"
End Sub