S
SteelFire via AccessMonster.com
I have a form that has combo and text boxes that are used as filters for a
query. The text box that I am having a hard time with is the box that will
filter by the description of the part(record). I was thinking of setting it
up so that it would find any record with what ever you typed into the text
box. I have mine set up as:
If Not IsNull(Me.txtDesc) Then
strWhere = strWhere & "([Description] = ""*" & Me.txtDesc & "*"") AND
"
End If
This adds the description as a filter if something has been entered into the
text box. This is not working and I am not sure why. Any help would be nice.
query. The text box that I am having a hard time with is the box that will
filter by the description of the part(record). I was thinking of setting it
up so that it would find any record with what ever you typed into the text
box. I have mine set up as:
If Not IsNull(Me.txtDesc) Then
strWhere = strWhere & "([Description] = ""*" & Me.txtDesc & "*"") AND
"
End If
This adds the description as a filter if something has been entered into the
text box. This is not working and I am not sure why. Any help would be nice.