Extracting Surname field

HelenL

New Member
Joined
Nov 17, 2008
Messages
30
I have data where I need to extract the Surname only, but in some cases there is either 1 or 2 middle names, or no middle name.
examples John George Evans, John Evans, Sue Mary Jo Ellis, Jean Ellis.
Hope someone can help please!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi Helen

I would use InStrRev to find the first space from the right and then use that to get the rightmost characters......

... there have been a couple of threads on this subject recently if you want to search for them :)

regards

Kevin
 
Upvote 0
Thank you. I did search but go no results, so perhaps I am using wrong search word? I have used various to get the first space, but unsuccessful in tracking if 2 spaces exist as per example in order to get Surname only. Could you please give me an example to use your syntax on say Mary Jane Elizabeth ELLIS to extract ELLIS. Many thanks. Helen
 
Upvote 0
Here is a User Defined Function. Press ALT + F11 to open the Visual basic Editor, Insert > Module and paste in

Code:
Function Surname(r As Range) As String
Surname = Right(r.Value, Len(r) - InStrRev(r.Value, " "))
End Function
then press ALT + Q.

To use it to extract the surname from the name in A1

=surname(A1)
 
Upvote 0
Thank you. You are a genius. Special thanks too for not assuming any knowledge of VB on my part! :)
 
Upvote 0
Sorry to trouble you. I tested successfully on later version of Excel and the data cannot be moved from system on Excel 97. Using suggestion solution, I get Compile Error Sub or Function not defined highlighted on the (r) of Len(r) in code below. Any thoughts round this please?

Function Surname(r As Range) As String
Surname = Right(r.Value, Len(r) - InStrRev(r.Value, " "))
End Function
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,460
Members
448,965
Latest member
grijken

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