How to read Read character from Right to left and return the characters

RajeshP

New Member
Joined
Sep 23, 2017
Messages
4
Example:
1.ao.Univ.Prof. Dr. Peter Bettelheim
2.ao.Univ.Prof. Prim. DDr. Hermann Enzelsberger

<tbody>
</tbody>


I need the below output from above name. Any one can help me.

Answer should be:

<tbody>
</tbody>
1.ao.Univ.Prof. Dr.

<tbody>
</tbody>
2.ao.Univ.Prof. Prim. DDr.

Key workd is Dot. I need the characher before dot(.)
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Maybe

=LEFT(A1,FIND(".@",SUBSTITUTE(A1,".",".@",LEN(A1)-LEN(SUBSTITUTE(A1,".","")))))
 
Upvote 0
Hi Tera201,

Great!.. Its working fine.

Also, I want to split First name and last in the same Name. Could you please help me to get the formula for the same.

Example: 1.ao.Univ.Prof. Dr. Peter Bettelheim
2. apl.Prof. Dr. Siegfried Georg Priglinger

Output should be:
1. First Name last name
Peter Bettelheim
2. First Name last name
Siegfried Georg Priglinger

Kindly do the needful
 
Upvote 0

Forum statistics

Threads
1,216,743
Messages
6,132,457
Members
449,729
Latest member
davelevnt

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