Last names

ttcbroer

New Member
Joined
Oct 4, 2005
Messages
34
What function do I need when the result must be the lastname

A1. Jan Janssen
A2. John van Dijk

Result must be

B1. Janssen
B2. Dijk
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Try,

=RIGHT(A1,LEN(A1)-FIND("*",SUBSTITUTE(A1," ","*",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))


Edit:
Provided the value you want to find the last word is in cell A1.
 
Upvote 0
Hi

try:

=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",50)),50))

Hi Mr. Richard, I guess, incase I change the 50 to 20, the REPT() function would only replicate the text in the given string 20 times, correct ? In this case, my last word should only be a maximum of 50 characters, I reckon.
 
Upvote 0
No I think REPT will accept a lot bigger numbers than that. The reason why you might not want to do this is that Excel is creating a new string 9with all the spaces) in memory and this takes resources and thus time. To keep things running smoothly and quickly you should just use a reasonable number (which I figured to be 50).
 
Upvote 0

Forum statistics

Threads
1,215,065
Messages
6,122,945
Members
449,095
Latest member
nmaske

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