Hi The answer to your first ? is here,
If there is a space b/w the name & the number u can directly got to
Select the data,
Data Tad>Text to Columns>Delimited>Next>Ticket in the space check box, you will already get an idea in the Data Preview, Click Next & finish, the name & the ID will be listed in separate coulmn.
The challenge is if there is no space b/w the name & the ID, then follow these steps.
Apply this formula, please change the row & column Numbers, here it is E5
=LEFT(E5,MIN(FIND(0,SUBSTITUTE(E5,{1,2,3,4,5,6,7,8,9},0)&0))-1)&" "&SUBSTITUTE(E5,LEFT(E5,MIN(FIND(0,SUBSTITUTE(E5,{1,2,3,4,5,6,7,8,9},0)&0))-1),"")
This formula will separate the name & ID in the same cell
Copy this & do a special paste in the next cell
Follow the Text to Columns given by me at the starting of my reply.
YOU ARE DONE, Now the names & Ids are separated in different cells.