Greetings All,
I'm needing help with VBA which would find the word "FMLA" which will be in Column D, and replace the text in Column A with an "X".
The code I'm using for other searches on the spreadsheet is
I'm needing help with VBA which would find the word "FMLA" which will be in Column D, and replace the text in Column A with an "X".
The code I'm using for other searches on the spreadsheet is
Code:
Cells.Replace What:="Total", Replacement:="X Total", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False