mscallisto
Technical User
I have opened a text file with excel and found some embedded ascii characters other than a-z, A-Z, 0-9 and +-)(*&^%$#@! etc. in columns B and C (text format)
I know I can replace all E's with a question mark ? with the following or simply do a replace within the spreadsheet.
But how can I replace anything other than a-z, A-Z, 0-9 and +-)(*&^%$#@! with a space ?
I know I can replace all E's with a question mark ? with the following or simply do a replace within the spreadsheet.
Code:
Cells.Replace What:="E", Replacement:="?", LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
But how can I replace anything other than a-z, A-Z, 0-9 and +-)(*&^%$#@! with a space ?