I need to be able to use regular expressions in an excel macro that will search through a specific column, and then copy and paste all the rows that contain matches into a new s
Without major changes to your existing sub. Replace:
If Range("E" & CStr(LSearchRow)).Value = "Mail Box" Then
with:
v = Range("E" & CStr(LSearchRow)).Value If InStr(1, v, "red") > 0 Or InStr(1, v, "blue") > 0 Then