I use the following code to find and replace things like 0101.1 to 0101.A. The problem is after find & replace, what I get is 101.A, not 0101.A. The leading zero is gone. How do I preserve the leading zero? The cell is formatted as text. Thanks.
Range(Cells(6, 9), Cells(5330, 9).End(xlUp)).Select
Selection.Replace what:=".1", replacement:=".A", lookat:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False
Range(Cells(6, 9), Cells(5330, 9).End(xlUp)).Select
Selection.Replace what:=".1", replacement:=".A", lookat:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False