archilles89
New Member
- Joined
- Jun 3, 2018
- Messages
- 5
Hi,
I have a jumble of text string where in one column I have to extract the text only (no numbers and special characters) while on the other column I have to extract numbers only (no text and special characters)
[TABLE="width: 500"]
<tbody>[TR]
[TD]String[/TD]
[TD]Text[/TD]
[TD]Number[/TD]
[/TR]
[TR]
[TD]aaabbb!.,'1234222[/TD]
[TD]aaabbb[/TD]
[TD]1234222[/TD]
[/TR]
[TR]
[TD]abc@gmail.com[/TD]
[TD]abcgmailcom[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]*82.\3246"5656)[/TD]
[TD][/TD]
[TD]8232465656[/TD]
[/TR]
</tbody>[/TABLE]
Can someone help me derive a formula for this?
Currently I am using this
Any help would be awesome thank you!
I have a jumble of text string where in one column I have to extract the text only (no numbers and special characters) while on the other column I have to extract numbers only (no text and special characters)
[TABLE="width: 500"]
<tbody>[TR]
[TD]String[/TD]
[TD]Text[/TD]
[TD]Number[/TD]
[/TR]
[TR]
[TD]aaabbb!.,'1234222[/TD]
[TD]aaabbb[/TD]
[TD]1234222[/TD]
[/TR]
[TR]
[TD]abc@gmail.com[/TD]
[TD]abcgmailcom[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]*82.\3246"5656)[/TD]
[TD][/TD]
[TD]8232465656[/TD]
[/TR]
</tbody>[/TABLE]
Can someone help me derive a formula for this?
Currently I am using this
and manually CTRL+F them and replace them all. Kinda hard.=IF(OR(LEN(A2)>40,ISTEXT(FIND({"1","2","3","4","5","6","7","8","9","0","!","@","'","""","]","[","}","{","|","&","$","#","^","~","%","®","-",""},A2))),"Bad","Good")
Any help would be awesome thank you!