Jury Pool

AdrianneAbel

New Member
Joined
Nov 14, 2005
Messages
2
Hello. I'm in charge of creating a jury pool for the next trial and I'm hoping there is a macro or way that I can cut my data entry time in half. I have a sheet of 25,127 names that are all in one colomn, in this format (Smith, John J). I need them in three different colomns, each part of the name in it's own colomn. Is there a way I can automate this instead of cut and paste or retyping two of the fields? Lord please say yes...

thanks,
Adrianne
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hello and welcome to the board,

Look into DATA --> TEXT TO COLUMNS, with Delimited.

THis may cause other problems if name formats are different, i.e. no middle name, extra names etc..
 
Upvote 0
Try the following formulae:

If A1=Smith, John J

To pickup surname, enter =LEFT(A1,FIND(",",A1,1)-1)
To pickup forname, enter=LEFT(RIGHT(A1,LEN(A1)-FIND(" ",A1,1)),FIND(" ",RIGHT(A1,LEN(A1)-FIND(" ",A1,1)),1))
To pickup middle name (initial), enter=RIGHT(A1,LEN(A1)-FIND("#",SUBSTITUTE(A1," ","#",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))
 
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,509
Members
449,089
Latest member
RandomExceller01

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