Link to home
Start Free TrialLog in
Avatar of matthewlorin7
matthewlorin7

asked on

Find Partial Text match in MS Access Query

Hello!

I have a query by form function that calls a report.  The form is pretty straightforward...about a dozen drop-downs with static possibilities.  The form is connected to a query that uses the following formula to handle all the query possibilities:

IIf(IsNull([Forms]![frmSearch]![XXXXX]),[XXXXX],[Forms]![frmSearch]![XXXXX])

The query is the basis for a report.  

Everything works great, but I would also like to search a "notes" field by keyword.  The notes fields, as you might imagine, are paragraphs full of info.  I would like to be able to search the notes field by a single word or partial word, so that a search on "dog" would find "dogma" and "dogs" (and to be clear, search for the text anywhere in the notes field, even in the middle of a word).  How can I do this using the above formula?  Where do I put the "like" or "*" or whatever I 'm guessing I will need?  The name of the field is "Notes" BTW.

Thank you!
Avatar of shambalad
shambalad
Flag of United States of America image

In the above formula, do the [XXXXX]'s all refer to the same control? That is to say, if you have a combo box names 'cboName', would the above formula be:

IIf(IsNull([Forms]![frmSearch]![cboName]),[cboName],[Forms]![frmSearch]![cboName])

Would it be possible to see the whole query?
A lot depends on how many records you are processing. Using a wild card search on a larger text field can be very time-consuming. There are some alternate ways to do that kind of a search in a query (e.g. you can write your own function and use it in a query).
Todd
What is [XXXXX]?  A little less cryptic please.
Avatar of matthewlorin7
matthewlorin7

ASKER

shambalad:  Thank you for the quick reply.  The formula references two items: the combobox from the form I am using to select my search parameter, and within the query itself.  Confusingly, they have the same name (Notes).  A better way would be to have them labeled differently (frmSearchNotes and qryNotes, perhaps).  Regardless, basically the IIF is saying that if the "Notes" field in the search form is empty, then default to the "Notes" field from the query (which will include every possible record).  Otherwise, choose the "Notes" field from the Search form (which will filter for that term).  This is how it works for all the other fields on the search form, anyway (I have about a dozen).  However, I would like to search the entire paragraph of the "Notes" field by a single word and if that word is contained in the field (anywhere), I would like it reflected in my report.  Also, I need it to be an IIF funtion to account for when there is nothing entered in the "Notes" field on the search form.  This is what I've come up with below, but it does not work:

IIf(IsNull([Forms]![frmSearch]![Notes]),[Notes],([tblMaster].[Notes]) Like '*[Forms]![frmSearch]![Notes]*')

Thank again for the help, it's very much appreciated.  I'm open to other methods of doing this, but need those two elements: accounting for null values, and partial text search.
GRayL:  XXXXX was basically a variable.  In actuality, it reflected whatever field I was searching on ("Name," "Address," "Notes," etc).  What I originally posted works for all my values if there is only one possibility ("John" or "Jim" or "Kevin"), but I need to be able to search for just part of an entry (as would be the case with a key word in the Notes field).  Hope that helps.
GRayL:  You answered another very similar question with the below response.  This is very close to what I am looking for.  How to I work this into an IIF statement???

"GRayL:I imagine you are using this in a query somewhere, so the WHERE clause has to be:

WHERE Customer Like "*" & [Forms]![SearchCustomer]![SearchName] & "*";  "

My SQL statement reads:

WHERE ((tblMaster.Notes)=IIf(IsNull([Forms]![frmSearch]![Notes]),[Notes],([tblMaster].[Notes]) Like "*" & [Forms]![frmSearch]![Notes] & "*"))

What is wrong with this?
ASKER CERTIFIED SOLUTION
Avatar of GRayL
GRayL
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
That worked!!!  Guess I didn't need the IIF.  Thought I would have to account for the null value, but I ran it with a blank in the Notes field and it worked fine.  Thanks!!!
Thanks, glad to help.  Remember with a null value the expession reduces to LIKE "**" which will give you everything.