Hi Everyone,
I'm using the below code to find and replace "100" with "Term 1" in Column F.
I now need it to find any number between 1-200 and replace with Term 1.
Any Help is appreciated.
Shaun
I'm using the below code to find and replace "100" with "Term 1" in Column F.
I now need it to find any number between 1-200 and replace with Term 1.
Code:
Sub FindReplace()
Columns("F").Replace What:="100", _
Replacement:="Term 1", _
LookAt:=xlPart, _
SearchOrder:=xlByRows, _
MatchCase:=False, _
SearchFormat:=False, _
ReplaceFormat:=False
End Sub
Any Help is appreciated.
Shaun