Excel Formula to Remove ALL Special Characters

Add to Favorites
Author: | Edits: don

Excel 365 Version

=CLEAN(TEXTJOIN("",TRUE,IF(CODE(MID(A11,SEQUENCE(LEN(A11)),1))>=127,"",CHAR(CODE(MID(A11,SEQUENCE(LEN(A11)),1))))))

Pre-Excel 365 Version

=CLEAN(CONCAT(IF(CODE(MID(A11,ROW(INDIRECT("1:"&LEN(A11))),1))>=127,"",CHAR(CODE(MID(A11,ROW(INDIRECT("1:"&LEN(A11))),1))))))

How to Use

  1. Choose your version of the formula from above.
  2. Change the cell reference to the cell that needs to have characters removed in your worksheet.
  3. Watch the Video above to learn everything about the formula and replacing special characters in Excel.

Downloadable Files: Excel File

Question? Ask it in our Excel Forum


Excel VBA Course
Excel VBA Course - From Beginner to Expert

200+ Video Lessons 50+ Hours of Instruction 200+ Excel Guides

Become a master of VBA and Macros in Excel and learn how to automate all of your tasks in Excel with this online course. (No VBA experience required.)

View Course

Similar Content on TeachExcel
Excel Function to Remove All Text OR All Numbers from a Cell
Tutorial: How to create and use a function that removes all text or all numbers from a cell, whichev...
Formula to Count Occurrences of a Word in a Cell or Range in Excel
Tutorial: Formula to count how many times a word appears in a single cell or an entire range in Exce...
Remove All Data Validation from a Cell in Excel
Macro: Remove all data validation from a cell in Excel with this free Excel macro. This is a grea...
Remove All Filtering From a Worksheet in Excel
Macro: This Excel macro removes all filtering from a worksheet in Excel. This allows you to compl...
Formula to Delete the First or Last Word from a Cell in Excel
Tutorial: Excel formula to delete the first or last word from a cell. You can copy and paste the fo...
Formulas to Remove First or Last Character from a Cell in Excel
Tutorial: Formulas that allow you to quickly and easily remove the first or last character from a ce...
Tutorial Details
Downloadable Files: Excel File
Excel VBA Course
Excel VBA Course - From Beginner to Expert

200+ Video Lessons
50+ Hours of Video
200+ Excel Guides

Become a master of VBA and Macros in Excel and learn how to automate all of your tasks in Excel with this online course. (No VBA experience required.)

View Course