• 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.

Remove special characters from cells.

uday

Member
Hi,

Need to remove random special characters from A column by formula and also lookup only by consisting special character from A column to D column. Please find the attached file.

Thanks
 

Attachments

  • Formulae workbook.xlsx
    9.2 KB · Views: 6
Hi,

Check this file.
The question 3 is not enough clear for me, could you please describe it?
 

Attachments

  • Formulae workbook.xlsx
    9.8 KB · Views: 5
Thanks..

I want a lookup formula which will lookup only numbers match from A column.
In A column data are merged with special characters. Look up values will be D and table array will be A. Hope this is clear now.
 
I will be very obliged, if you explain the formula which you are using to remove all those special characters from A column.

I want to learn it from it.
 
Hi:
Here is a non-array solution.
Code:
=SUMPRODUCT(MID(0&A1,LARGE(INDEX(ISNUMBER(--MID(A1,ROW($1:$10),1))*ROW($1:$10),0),ROW($1:$10))+1,1)*10^ROW($1:$10)/10)

The ROW($1:$10) is the length of the string, if you are working with strings longer than 10 simply change the 10 in ROW($1:$10) to what ever length you prefer.

Thanks
 
Great to have Excel in system and chance to get working with beautiful formula.

Thank you guys for help.
 
Back
Top