Name Reverse and setting Proper format (Excel)

Shinianne

New Member
Joined
Aug 6, 2018
Messages
24
Office Version
  1. 365
Hi,

Can I please ask for help, this is the formula im using
=PROPER(RIGHT(O4,LEN(O4)-SEARCH(".",O4))&" "&LEFT(O4,SEARCH(".",O4)))

the result of the formula is at Name Row
=PROPER(RIGHT(O4,LEN(O4)-SEARCH(".",O4))&" "&LEFT(O4,SEARCH(".",O4)))


I wanted to make the name look like Abbas, Shin ,but i couldnt figure out how to do it.
can someone please help? thank you so much

NameMember
Abbas Shin.
shin.abbas

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi
try
Code:
=PROPER(RIGHT(O4,LEN(O4)-SEARCH(" ",O4))&" "&LEFT(O4,SEARCH(" ",O4)))
You should be searching for space, Ok?
 
Last edited:
Upvote 0
See if this does what you want.

Name Reverse

NO
4Abbas, Shinshin.abbas

<colgroup><col style="font-weight:bold; width:30px; "><col style="width:111px;"><col style="width:109px;"></colgroup><tbody>
</tbody>

Spreadsheet Formulas
CellFormula
N4=PROPER(MID(O4&", "&O4,FIND(".",O4)+1,LEN(O4)+1))

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4

This is great it worked! thank you so much
 
Upvote 0
the name was formatted without space only a period, but this works for spaces indeed. :) thank you so much
 
Upvote 0

Forum statistics

Threads
1,216,137
Messages
6,129,093
Members
449,486
Latest member
malcolmlyle

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