• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Finding and reporting special characters

Hi Friends,

I need a formula where i can findout the special characters in a cell and the particluar special character is highlighted in the corresponding cell where the formula is.

Thanks in advance,
Jagdish
 
Will it always be @ or will there be a list of special characters? If others, please supply list of all special characters to be extracted.

For this example, you can use Power Query and the following Mcode

Excel 2016 (Windows) 64 bit

C
D
1
DataCustom
2
Jagdish|Shetty|
3
Jagdish@Shetty@
4
Jagdish#Shetty#

Sheet: Sheet1


Code:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Added Custom" = Table.AddColumn(Source, "Custom", each Text.Select([Data],{"@","#","|"}))
in
    #"Added Custom"
 
Last edited:
Back
Top