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

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
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,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

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