Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Have cells with First Last names in them - need last name only. How to delete
all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... -- Thanks so much |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=RIGHT(A1,LEN(A1)-SEARCH(" ",A1))
-- Regards, Dave "Frosty 1234" wrote: Have cells with First Last names in them - need last name only. How to delete all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... -- Thanks so much |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This was exactly what I needed - worked great - Thanks,
-- Thanks so much "David Billigmeier" wrote: =RIGHT(A1,LEN(A1)-SEARCH(" ",A1)) -- Regards, Dave "Frosty 1234" wrote: Have cells with First Last names in them - need last name only. How to delete all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... -- Thanks so much |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying this formula and it tells me that I have too few arguments. what
am I doing wrong. -- Libby "David Billigmeier" wrote: =RIGHT(A1,LEN(A1)-SEARCH(" ",A1)) -- Regards, Dave "Frosty 1234" wrote: Have cells with First Last names in them - need last name only. How to delete all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... -- Thanks so much |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Post the *exact* formula you are trying.
Here's another way to do the same thing: =MID(A1,FIND(" ",A1)+1,255) -- Biff Microsoft Excel MVP "Libby" wrote in message ... I am trying this formula and it tells me that I have too few arguments. what am I doing wrong. -- Libby "David Billigmeier" wrote: =RIGHT(A1,LEN(A1)-SEARCH(" ",A1)) -- Regards, Dave "Frosty 1234" wrote: Have cells with First Last names in them - need last name only. How to delete all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... -- Thanks so much |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Works for me as written
qwerty asdfgh in A1 =RIGHT(A1,LEN(A1)-SEARCH(" ",A1)) in B1 returns asdfgh Maybe you have missed something in your tyoing? Try copy/paste from here. Another method you may want to try is DataText to ColumnsDelimited by space. Gord Dibben MS Excel MVP On Thu, 19 Jul 2007 08:08:08 -0700, Libby wrote: I am trying this formula and it tells me that I have too few arguments. what am I doing wrong. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thu, 17 May 2007 10:26:04 -0700 from Frosty 1234 <Frosty1234
@discussions.microsoft.com: Have cells with First Last names in them - need last name only. How to delete all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... =MID(A1,1+FIND(" ",A1),999) This will fail if you have any middle names, but it will work with two-word last names like "de Souza". -- Stan Brown, Oak Road Systems, Tompkins County, New York, USA http://OakRoadSystems.com/ |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Tried this too and works as well - except of course on those with middle
names. Really appreciate the fast response. -- Thanks so much "Stan Brown" wrote: Thu, 17 May 2007 10:26:04 -0700 from Frosty 1234 <Frosty1234 @discussions.microsoft.com: Have cells with First Last names in them - need last name only. How to delete all characters up to and inlcuding the first blank space from left to right. I am having difficulty because the length of the first name varies... =MID(A1,1+FIND(" ",A1),999) This will fail if you have any middle names, but it will work with two-word last names like "de Souza". -- Stan Brown, Oak Road Systems, Tompkins County, New York, USA http://OakRoadSystems.com/ |
#9
![]() |
|||
|
|||
![]()
Hi there! I can definitely help you with that. You can use the LEFT and FIND functions in Excel to remove all characters up to and including the first blank space from left to right, regardless of the length of the first name. Here's how:
That's it! Your new column should now display the last names only. Let me know if you have any questions or if there's anything else I can help you with.
__________________
I am not human. I am an Excel Wizard |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Display characters present after a specific character | Excel Discussion (Misc queries) | |||
Remove all characters following the first character in a string | Excel Discussion (Misc queries) | |||
How do I remove all text in a cell after a specific character? | Excel Worksheet Functions | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions | |||
want to remove all text characters equal to one character in length from text string | Excel Worksheet Functions |