Golom:
Thanks for the prompt reply.
You're right what I have as a criteria which only retrieves record(s) if the search items are in that exact order with the comma.
I am using query approach because I have developed a custom search form where there are few text boxes and combo boxes where users can enter their search criteria. But Skills field can have more than one word to search for. As other text boxes and combo boxes are easy to implement with LIKE statement in query.
I have the following so far:
SELECT tblApplicantBioData.ApplicantFirstName, tblApplicantBioData.ApplicantLastName, tblApplicantEducationInfo.AppDegreeObtained, tblApplicantEducationInfo.AppDegreeMajor, tblWorkExperience.YearsOfTotalWorkExp, tblWorkExperience.YearsOfExpInJobAppliedfor, tblWorkExperience.GovernmentExp, tblApplicantEducationInfo.AppSkills, tblApplicantBioData.CurState, tblApplicantBioData.AppHomePhone, tblApplicantBioData.AppWorkPhone, tblApplicantBioData.AppCellPhone, tblApplicantBioData.AppEMailAddress, tblApplicantBioData.CurCity, tblResumeHistory.ResumeFile
FROM ((tblApplicantBioData INNER JOIN tblWorkExperience ON tblApplicantBioData.ApplicantID = tblWorkExperience.ApplicantID) INNER JOIN tblResumeHistory ON tblApplicantBioData.ApplicantID = tblResumeHistory.ApplicantID) INNER JOIN tblApplicantEducationInfo ON tblApplicantBioData.ApplicantID = tblApplicantEducationInfo.ApplicantID
WHERE (((tblApplicantBioData.ApplicantFirstName) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![ApplicantFirstName]<>"",[Forms]![frmResumeSearchCriteria]![ApplicantFirstName],"*" & "*"

& "*"

AND ((tblApplicantBioData.ApplicantLastName) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![ApplicantLastName]<>"",[Forms]![frmResumeSearchCriteria]![ApplicantLastName],"*" & "*"

& "*"

AND ((tblApplicantEducationInfo.AppDegreeObtained) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![ApplicantLastName]<>"",[Forms]![frmResumeSearchCriteria]![ApplicantLastName],"*" & "*"

& "*"

AND ((tblApplicantEducationInfo.AppDegreeMajor) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![AppDegreeMajor]<>"",[Forms]![frmResumeSearchCriteria]![AppDegreeMajor],"*" & "*"

& "*"

AND ((tblWorkExperience.GovernmentExp) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![GovernmentExp]<>"",[Forms]![frmResumeSearchCriteria]![GovernmentExp],"*" & "*"

& "*"

AND ((tblApplicantEducationInfo.AppSkills) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![AppSkills]<>"",[Forms]![frmResumeSearchCriteria]![AppSkills],"*" & "*"

& "*"

AND ((tblApplicantBioData.CurState) Like "*" & IIf([Forms]![frmResumeSearchCriteria]![CurState]<>"",[Forms]![frmResumeSearchCriteria]![CurState],"*" & "*"

& "*"

)
WITH OWNERACCESS OPTION;
Do I need to build SQL for other text boxes and combo boxes if I build SQL for Skills filed?