R
Raj
I created a combo box using the wizard and I selected
the "Find a record on my form base on the value I
selected in my combo box". How would I change to code to
filter or group all records for the choice I selected and
not just one.
Thank you in advance
This is the code.
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo43], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
the "Find a record on my form base on the value I
selected in my combo box". How would I change to code to
filter or group all records for the choice I selected and
not just one.
Thank you in advance
This is the code.
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID] = " & Str(Nz(Me![Combo43], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub