R
rbeach
I have a form that I enter information for a search. Currently I have the
below programming in place and it works correctly if I enter the description
exactly as it is in the table (example: I enter "Bag, Tool" to retrieve "Bag,
Tool"). What I need is to enter a partial description and return all of the
items that contain the partial description (example: I enter "Tool" to
retrieve "Bag, Tool") within my list.
The below is the programming I currently have in place for the description
search:
If Not IsNull(Me.DescriptionData) Then
strWhere = strWhere & "([Desc] = """ & Me.DescriptionData & """) AND "
End If
I appreciate all assistance.
below programming in place and it works correctly if I enter the description
exactly as it is in the table (example: I enter "Bag, Tool" to retrieve "Bag,
Tool"). What I need is to enter a partial description and return all of the
items that contain the partial description (example: I enter "Tool" to
retrieve "Bag, Tool") within my list.
The below is the programming I currently have in place for the description
search:
If Not IsNull(Me.DescriptionData) Then
strWhere = strWhere & "([Desc] = """ & Me.DescriptionData & """) AND "
End If
I appreciate all assistance.