Is there a way to search for * and replace them with nothing?
I want to delete all the * from my worksheet though when I do a find replace it deletes all the worksheet data
I want to delete all the * from my worksheet though when I do a find replace it deletes all the worksheet data
Code:
Sub test3()
Cells.Replace What:="*", Replacement:="", LookAt:=xlPart, SearchOrder:= _
xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
End Sub