formula question

bflan0524

Board Regular
Joined
Oct 7, 2016
Messages
192
Office Version
  1. 2010
hello
in column A i have a name that appears as Lawrence_Harris
in Column B i would like it to appear as Harris, Lawrence

any thoughts on how i could do this

ty
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
If they all have the underscore, this could work for you:

Excel 2013/2016
AB
1Harris_LawrenceHarris, Lawrence

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
B1=LEFT(A1,FIND("_",A1)-1) & ", " & MID(A1,FIND("_",A1)+1,1000000)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>



Of course that's assuming you don't have someone with a last name over 1,000,000 characters ;) .
 
Last edited:
Upvote 0
Hi,

This is one way, but I'm almost certain that your Single sample may not be a true representation of all your data:


Book1
AB
1Lawrence_HarrisHarris, Lawrence
Sheet31
Cell Formulas
RangeFormula
B1=MID(A1,FIND("_",A1)+1,255)&", "&LEFT(A1,FIND("_",A1)-1)
 
Upvote 0
Hi jproffer, I think you have your A1 data backwards...

Edit: was posting this when you were posting the above:)

If OP's data is like you posted, then a single SUBSTITUTE function could do.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,020
Members
448,939
Latest member
Leon Leenders

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