[Solved] VBA scripting for MS excel
I think this is what you meant, the following code loops through all rows with data, and for each row checks if the word “man” is inside that strings (using the Instr function). Sub FindMan() Dim FindString As String Dim Sht As Worksheet Dim LastRow As Long Dim lRow As Long ‘ modify “Sheet1” to … Read more