Segregation of alphabets and numbers

Sandie1712

New Member
Joined
Aug 10, 2017
Messages
33
Hello,

Could you pl help me separate the numbers and alphabets in different columns without the help of VBA

[FONT=&quot]101ASD234FGHJ 2367DFR45GTYDFG 653RTYUHJKKL412 24RTYUIO3123O

Thanks!!

Sandie[/FONT]
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Use this array formula to get numbers
**Must be entered with Ctrl+Shift+Enter key combination.
Code:
[B]=NPV(-0.9,,IFERROR((MID(A1,256-COLUMN(A:IV),1)%),""))[/B]
then this one to get TEXT
Regular formula
Code:
[B]=TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,0,""),1,""),2,""),3,""),4,""),5,""),6,""),7,""),8,""),9,""))[/B]

Book1
ABC
1101ASD234FGHJ101234ASDFGHJ
22367DFR45GTYDFG236745DFRGTYDFG
3653RTYUHJKKL412653412RTYUHJKKL
424RTYUIO3123O243123RTYUIOO
Sheet3
 
Upvote 0
Many Thanks for your reply!!

I am comfortable with substitute solution whereas i am not clear about NPV solution....could you pl through some light on its explanation
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,837
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top