So I have a subform that is basically a query of a table. I have it programmed so that when you choose a name from the dropdown box it only displays records with that name in one of three columns. I want to put something that will also display at the bottom the number of jobs completed by that person. So if you filter someone's name and it lists all the jobs they've done, I want the bottom to have a box that inputs a number which basically says 'Job A = 43', 'Job B = 24', etc. My issue is that I need it to search for 'Job A' by a single word because the job might not always be typed in the same format. So basically if the job says 'Fixed a Computer' or 'Computer was fixed' in either of two columns, I need it to search for the records that have the word 'Computer' and tell me how many records have that word.
I'm running with a dcount right now but it has to be word for word, and in the exact same phrase, to match.