For the future you will get many more helpers if you can post a copyable screen shot directly in your post. Most helpers here don't much like typing out test data.
Check my signature block for some options.
Try this in
copy of your workbook.
You could add/remove words with both lists by adjusting the arrays near the top of the code.
<font face=Courier New><br><SPAN style="color:#00007F">Sub</SPAN> CheckVals()<br>****<SPAN style="color:#00007F">Dim</SPAN> ChkWords, DelWords<br>****<SPAN style="color:#00007F">Dim</SPAN> bStop <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Boolean</SPAN><br>****<SPAN style="color:#00007F">Dim</SPAN> i <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN><br>****<SPAN style="color:#00007F">Dim</SPAN> Found <SPAN style="color:#00007F">As</SPAN> Range<br>****<br>****ChkWords = Array("E. Coli", "Arsenic", "Manganese", "Fluoride", _<br>********"Nitrate", "Total Coliforms", "Nitrite")<br>****DelWords = Array("DWQI Aesthetic", "Aesthetic Rating")<br>****<br>****i = <SPAN style="color:#00007F">LBound</SPAN>(ChkWords)<br>****<SPAN style="color:#00007F">With</SPAN> Range("A4", Range("A" & Rows.Count).End(xlUp))<br>********<SPAN style="color:#00007F">Do</SPAN><br>************<SPAN style="color:#00007F">Set</SPAN> Found = .Find(What:=ChkWords(i), LookIn:=xlValues, _<br>****************LookAt:=xlWhole, MatchCase:=False, SearchFormat:=False)<br>************<SPAN style="color:#00007F">If</SPAN> Found <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN><br>****************bStop = <SPAN style="color:#00007F">True</SPAN><br>************<SPAN style="color:#00007F">Else</SPAN><br>****************i = i + 1<br>************<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>********<SPAN style="color:#00007F">Loop</SPAN> <SPAN style="color:#00007F">While</SPAN> <SPAN style="color:#00007F">Not</SPAN> bStop And i <= <SPAN style="color:#00007F">UBound</SPAN>(ChkWords)<br>********<SPAN style="color:#00007F">If</SPAN> bStop <SPAN style="color:#00007F">Then</SPAN><br>************<SPAN style="color:#00007F">For</SPAN> i = <SPAN style="color:#00007F">LBound</SPAN>(DelWords) <SPAN style="color:#00007F">To</SPAN> <SPAN style="color:#00007F">UBound</SPAN>(DelWords)<br>****************<SPAN style="color:#00007F">Set</SPAN> Found = .Find(What:=DelWords(i), LookIn:=xlValues, _<br>********************LookAt:=xlWhole, MatchCase:=False, SearchFormat:=False)<br>****************<SPAN style="color:#00007F">If</SPAN> <SPAN style="color:#00007F">Not</SPAN> Found <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN><br>********************Found.EntireRow.Delete<br>****************<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>************<SPAN style="color:#00007F">Next</SPAN> i<br>********<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>****<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN><br></FONT>