slipstream90
New Member
- Joined
- Jun 15, 2020
- Messages
- 2
- Office Version
- 365
- Platform
- Windows
Fellow Forum Members,
I have text string data that has unwanted Carriage Returns (CF) and Line Feeds (LF) I need substituted with a TAB. I also need all Single Blank Spaces substituted with a TAB. What is making this complicated is how I am dealing with developing a formula that involves substituting invisible characters with a different invisible character. Below in BOLD is a snippet of the sample data I am working with:
TrnfrCode="02" subCode="8"(CF)(LF)
KHTVariant="04" ASPCode="5"
Can someone please help me develop an Excel 365 formula that can substitute a single blank [SPACE] with a TAB and also substitute (CF)(LF) invisible characters with a TAB?
The link below provides a list of Character Codes used in Excel. The problem I am having is constructing the correct formula syntax using the Character Codes bulleted below so the formula correctly performs the needed substitutions to the sample text shown above in BOLD:
Any opinions welcome and thank you for your time with matter.
I have text string data that has unwanted Carriage Returns (CF) and Line Feeds (LF) I need substituted with a TAB. I also need all Single Blank Spaces substituted with a TAB. What is making this complicated is how I am dealing with developing a formula that involves substituting invisible characters with a different invisible character. Below in BOLD is a snippet of the sample data I am working with:
TrnfrCode="02" subCode="8"(CF)(LF)
KHTVariant="04" ASPCode="5"
Can someone please help me develop an Excel 365 formula that can substitute a single blank [SPACE] with a TAB and also substitute (CF)(LF) invisible characters with a TAB?
The link below provides a list of Character Codes used in Excel. The problem I am having is constructing the correct formula syntax using the Character Codes bulleted below so the formula correctly performs the needed substitutions to the sample text shown above in BOLD:
- TAB Character = CHAR(9)
- SPACE Character = CHAR(32)
- NEW LINE Character = CHAR(10) This one is a problem because it is not not equate to (CF)(LF) characters.
Any opinions welcome and thank you for your time with matter.