need suggestions

theHydra

New Member
Joined
Feb 13, 2019
Messages
2
I have a bunch of Managers (50+)with names in the wrong format, I need to get from:

Jones, Andy (L7F000915)
to
ABC1AJones (ABC1= site code)

not sure the best way to achieve, open to ideas.

Thank you!

<tbody>
</tbody>
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi,

Formula suggestion..
B1 formula with "Site Code" hard-coded in formula.
C1 formula using Cell reference for "Site Code"


Book1
ABCDE
1Jones, Andy (L7F000915)ABC1AJonesABC1AJonesSite Code
2ABC1
Sheet567
Cell Formulas
RangeFormula
B1="ABC1"&MID(A1,FIND(",",A1)+2,1)&LEFT(A1,FIND(",",A1)-1)
C1=E2&MID(A1,FIND(",",A1)+2,1)&LEFT(A1,FIND(",",A1)-1)
 
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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