This should do the trick: =SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE([YOUR COLUMN]@row, ",\"", ", "), "\"", ""), "[", ""), "]", "") Answer from Carson Penticuff on community.smartsheet.com
🌐
MrExcel
mrexcel.com › forums › question forums › excel questions
Remove all special characters and spaces in one go | MrExcel Message Board
April 1, 2011 - ... Function removeSpecial(sInput ... Mid$(sSpecialChars, i, 1), " ") Next removeSpecial = sInput End Function Alt+F11 - Insert - Module - Paste it in....
🌐
DataCamp
datacamp.com › tutorial › clean-function-in-excel
CLEAN() Function in Excel: Remove Non-Printable Characters | DataCamp
February 20, 2025 - The CLEAN() function in Excel removes non-printable characters from text. It cleans up data imported from sources where unwanted characters may be present.
Discussions

Remove special characters from an Excel 365 worksheet
Greetings, We receive a downloaded file from an external source on a weekly basis. It contains special characters, like #, $, %, etc. I need to find a way to remove them all. The size of the files, row and column varies. It does contain underscores… More on learn.microsoft.com
🌐 learn.microsoft.com
3
1
May 25, 2022
Removing letters and special characters from cells/columns
Try: =LET(words,TEXTSPLIT(A1," "),numbers,IF(ISNUMBER(words+0),words,""),TEXTJOIN(" feet ",TRUE,numbers)&" feet") More on reddit.com
🌐 r/excel
17
10
January 5, 2024
How to remove special character from excel column
I have excel column with column name Candidate name which having value of candidate name but some candidate name come with special charcter how can i romove it More on forum.uipath.com
🌐 forum.uipath.com
16
0
December 29, 2022
How can I replace all special characters in a cell except for spaces and dashes in Google Sheets using regex? - Stack Overflow
1 Can you replace first special ... other special characters from the cell? 1 Google Sheets - Find and replace specific characters in a cell · 6 Remove non numeric characters and spaces in google sheet cell · 1 Remove everything except numbers and alphabets from a string using google sheet or excel ... More on stackoverflow.com
🌐 stackoverflow.com
🌐
Ablebits
ablebits.com › ablebits blog › excel › excel formulas › how to delete special / unwanted characters in excel
How to delete special / unwanted characters in Excel
April 12, 2023 - Insert one of the above codes in your workbook as explained in How to insert VBA code in Excel, and your custom function is ready for use. Not to confuse our new user-defined function with the Lambda-defined one, we've named it differently: ... Assuming the original string is in A2 and unwelcome characters in D2, we can get rid of them using this formula: ... If you do not want to bother about supplying special characters for each formula, you can specify them directly in the code: Function RemoveSpecialChars(str As String) As String Dim chars As String Dim index As Long chars = "?¿!¡*%#$(){}[]^&/\~+-" For index = 1 To Len(chars) str = Replace(str, Mid(chars, index, 1), "") Next RemoveSpecialChars = str End Function
🌐
TeachExcel
teachexcel.com › excel-tutorial › 2385 › excel-formula-to-remove-all-special-characters
Excel Formula to Remove ALL Special Characters - TeachExcel.com
Excel 365 Version CLEAN TEXTJOIN TRUE IF CODE MID A11 SEQUENCE LEN A11 1 gt 127 CHAR CODE MID A11 SEQUENCE LEN A11 1 Pre Excel 365 Version CLEAN CONCAT IF CODE MID A11 ROW INDIRECT 1 amp LEN A11 1 gt ...
Find elsewhere
🌐
Reddit
reddit.com › r/excel › removing letters and special characters from cells/columns
r/excel on Reddit: Removing letters and special characters from cells/columns
January 5, 2024 -

I promise I have been trying to figure this out for at least a week (google, AI, YouTube, etc);

Full disclosure I am pretty new to using excel in the capacity that I find myself in now.

Repeatedly I am evaluating data via csv files that contain words, letters, and numbers within a single cell. For example cell D,3 contains--Hi Reddit------>I'm Frank I am 63 and weigh 218 lbs.

What I am looking to extract/automate/macro/power query is the numbers and have the numbers separated by a word, let's just use feet.....

My desired outcome would scrub the sentence from-- Hi Reddit------>I'm Frank I am 63 and weigh 218 lbs.

to-- 63 feet 218 feet

This is a very repetitive situation I deal with daily now. Would love to have a workbook set up that I can copypasta, import whatever. But I will take whatever I can get.

Thank you in advance! I've been lurking here for a bit and I've seen the problem solving accomplished, so I'm sure there is a solution. I'm just really at my capacity right now on how to get this to work

🌐
UiPath Community
forum.uipath.com › help › studio
How to remove special character from excel column - Studio - UiPath Community Forum
December 29, 2022 - I have excel column with column name Candidate name which having value of candidate name but some candidate name come with special charcter how can i romove it
🌐
Exceljet
exceljet.net › home › formulas › remove unwanted characters
Remove unwanted characters - Excel formula | Exceljet
March 2, 2023 - To remove specific unwanted characters in Excel, you can use a formula based on the SUBSTITUTE function. In the example shown, the formula in C4 is: =SUBSTITUTE(B4,CHAR(202),"") Which removes a series of 4 invisible characters at the start of ...
🌐
ASAP Utilities
asap-utilities.com › asap-utilities-excel-tools-tip.php
Remove or Replace Unwanted Characters... | Extra features for Excel
ASAP Utilities »Text › 15 Remove or Replace Unwanted Characters...: This tool removes or replaces unwanted characters from the values in your selected cells. You can choose from a wide range of characters, including: - Letters (a-z, A-Z) ...
🌐
Automate Excel
automateexcel.com › home › remove special characters in excel & google sheets
Remove Special Characters in Excel & Google Sheets - Automate Excel
February 8, 2023 - Function RemoveSpecChar(sInput As String) As String Dim sSpecChar As String Dim i As Long sSpecChar = "\/:*?™""®<>|.&@# (_+`©~);-+=^$!,'" For i = 1 To Len(sSpecChar) sInput = Replace$(sInput, Mid$(sSpecChar, i, 1), "") Next RemoveSpecChar = sInput End Function · Now your UDF is defined and ready to use. Do not forget to save your workbook as an Excel Macro-Enabled Workbook (*.xlsm).
🌐
Statology
statology.org › home › how to remove special characters in excel
How to Remove Special Characters in Excel
May 31, 2023 - This particular formula removes all special characters from cell A2. This formula works by using nested SUBSTITUTE functions to substitute specific special characters with blanks, which has the effect of removing special characters from a cell.
🌐
Text-Utils
text-utils.com › remove special characters
Remove Special Characters - Online Regex Tools | Text-Utils.com
September 6, 2025 - Keep ASCII only: Remove all non-ASCII characters from the text. See the examples of usage below. ... Follow these steps to quickly delete unwanted symbols from the input. ... Have your text with unwanted characters ready.
🌐
Exceljet
exceljet.net › home › formulas › strip non-numeric characters
Strip non-numeric characters - Excel formula | Exceljet
July 11, 2025 - To remove all non-numeric characters from a text string, you can use a formula based on the REGEXREPLACE function. In the example shown, the formula in D5 is: =REGEXREPLACE(B5,"[^0-9]","")+0 As the formula is copied down, REGEXREPLACE removes ...
🌐
Excel Forum
excelforum.com › excel-general › 725168-remove-special-characters.html
Remove Special Characters
maybe that doesn't work with codes that are single digit?? not sure... if you can use formulas... then CLEAN() will do it.. as in =CLEAN(A1) then you can copy/paste over original. I also did some google.. and it appears function in this thread can work: http://www.eggheadcafe.com/software/...-characte.aspx
🌐
Exceldashboardschool
exceldashboardschool.com › home › formulas › remove special characters in excel
Remove Special Characters in Excel - Formula Guide
October 1, 2025 - In conclusion, there is no universal answer to the problem of removing special characters in Excel. The most appropriate method always depends on the situation. For small datasets with only a few unwanted characters, SUBSTITUTE may be sufficient. When hidden control codes are the issue, CLEAN combined with TRIM is the right choice.
🌐
Browserling
browserling.com › tools › remove-all-whitespace
Remove All Whitespace - Delete Spaces, Tabs, Newlines - Online - Browserling Web Developer Tools
Useful, free online tool that removes all spacing. No ads, nonsense, or garbage, just a whitespace deleter. Press a button – get the result.