So, I have an Access database where full names of patients are stored in a single field, ala "John Henry Michaels". I would like to be able get a name from the user search for it in the database. Now, here I found this
WHERE " " & tblEmployee.FullName & " " Like "* " & tblNames.Name & " *"
which is almost what I want. The only problem is that if the user doesn't know the middle name and enters "John Michaels", then "John Henry Michaels" will not show up. Is there a way to search the field for any part of the user input?