I am looking for a formula that will remove any unwanted characters in a cell.
For example i may a word or string of words with "-" , " ' " or "," in them and i would like to have these removed.
Thanks,
Adam.
I am looking for a formula that will remove any unwanted characters in a cell.
For example i may a word or string of words with "-" , " ' " or "," in them and i would like to have these removed.
Thanks,
Adam.
Last edited by adam2308; 05-12-2009 at 03:50 PM.
Depending on the number of unique characters you want removed you can embed Substitutes
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"-",""),"'",""),",","")
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
Or you can use a UDF. Copy this to a module in your workbook:
List all characters you want to remove in a new table.![]()
Please Login or Register to view this content.
=substitutelist(A1,H2:H4)
Where A1 contains the original text string, and H2:H4 house characters that you want to remove. Change ranges to suit.
Regards
Jon (Excel 2003, 2007, 2010, 2013)
Use CTRL+F then delete those character.![]()
If you dont want to create Function in VBA or use any formule then you can just seleact all the names and then use replace (CTRL+H) and replace these characters with ""
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks