P
paice
I am trying to create a form where the user can type in
something to search for and the query pulls up everything
containing the work they typed in. My query currently
looks like this:
SELECT [ISSUE/PROBLEM].[ISSUE/PROBLEM NUMBER],
[ISSUE/PROBLEM].[DATE RECEIVED], [ISSUE/PROBLEM].CATEGORY,
[ISSUE/PROBLEM].SUMMARY
FROM [ISSUE/PROBLEM]
WHERE (((forms![problem list]![search for]) Like
([ISSUE/PROBLEM].SUMMARY)))
ORDER BY [ISSUE/PROBLEM].[DATE RECEIVED];
The only thing it is pulling up is the ones that have the
exact work in the subject. For instance, I have two
with "Test" as the summary, it will pull up test because
that is all that is in the summary.
Is there any way I can have it pull up all the items
containing the word, insead of exact?
Thanks in advance
something to search for and the query pulls up everything
containing the work they typed in. My query currently
looks like this:
SELECT [ISSUE/PROBLEM].[ISSUE/PROBLEM NUMBER],
[ISSUE/PROBLEM].[DATE RECEIVED], [ISSUE/PROBLEM].CATEGORY,
[ISSUE/PROBLEM].SUMMARY
FROM [ISSUE/PROBLEM]
WHERE (((forms![problem list]![search for]) Like
([ISSUE/PROBLEM].SUMMARY)))
ORDER BY [ISSUE/PROBLEM].[DATE RECEIVED];
The only thing it is pulling up is the ones that have the
exact work in the subject. For instance, I have two
with "Test" as the summary, it will pull up test because
that is all that is in the summary.
Is there any way I can have it pull up all the items
containing the word, insead of exact?
Thanks in advance