G
Guest
I have a combo box called "stressbox." After an update, I'd like it to open a
separate form called "stressqueue" and find all entries for where the value
stresseng (on the form) has the same value as stressbox. This is a problem
because stressbox and stresseng all have values that have commas in them
(Lastname, First sort of things). Does anyone know how to use commas for the
below expression?
Thanks!
Dim strWhere As String
strWhere = "[stresseng] =" & Me.stressbox
DoCmd.OpenForm "stressqueue", , , "[stresseng] = " & stressbox
separate form called "stressqueue" and find all entries for where the value
stresseng (on the form) has the same value as stressbox. This is a problem
because stressbox and stresseng all have values that have commas in them
(Lastname, First sort of things). Does anyone know how to use commas for the
below expression?
Thanks!
Dim strWhere As String
strWhere = "[stresseng] =" & Me.stressbox
DoCmd.OpenForm "stressqueue", , , "[stresseng] = " & stressbox