I am having a hard time understanding what I am doing wrong with this search string (this is in a query). Here it is:
I have also tried
The first one does not return what I need and the second returns more than I need. The problem seems to lie in the [Tasks].[Description] field, which is a memo field. The Tax ID field is a text field and it seems to be returning what it is supposed to.
Thanks in advance for the help!
Code:
Like [Tasks].[Tax ID] Or Like [Tasks].[Description]
Code:
Like "*" & [Tasks].[Description] & "*" Or Like [Tasks].[Tax ID]
The first one does not return what I need and the second returns more than I need. The problem seems to lie in the [Tasks].[Description] field, which is a memo field. The Tax ID field is a text field and it seems to be returning what it is supposed to.
Thanks in advance for the help!