![]() |
delete middle word from a cell
Good morning
I have a large spreadsheet. The entry in one columns has a name e.g. Mr. John Smith. what I need is to delete the middle name so that it reads Mr. Smith I tried the functions LEFT , RIGHT, and text to columns. what is the right way to do this or do I need a macro? |
delete middle word from a cell
Let's say you have Mr. John Smith in cell A1:
It's ugly, but it works =LEFT(A1,SEARCH(" ",A1)-1)&" "&RIGHT(RIGHT(A1,LEN(A1)-SEARCH(" ",A1)),LEN(RIGHT(A1,LEN(A1)-SEARCH(" ",A1)))-SEARCH(" ",RIGHT(A1,LEN(A1)-SEARCH(" ",A1)))) "Wanna Learn" wrote: Good morning I have a large spreadsheet. The entry in one columns has a name e.g. Mr. John Smith. what I need is to delete the middle name so that it reads Mr. Smith I tried the functions LEFT , RIGHT, and text to columns. what is the right way to do this or do I need a macro? |
delete middle word from a cell
Try Edit Replace with Find: ' * ' and Replace: ' '
[Explicitly: Find: single space followed by * followed by single space; Replace: single space] Wanna Learn wrote: Good morning I have a large spreadsheet. The entry in one columns has a name e.g. Mr. John Smith. what I need is to delete the middle name so that it reads Mr. Smith I tried the functions LEFT , RIGHT, and text to columns. what is the right way to do this or do I need a macro? |
delete middle word from a cell
Lori
PERFECT! thanks have agreat day "Lori" wrote: Try Edit Replace with Find: ' * ' and Replace: ' ' [Explicitly: Find: single space followed by * followed by single space; Replace: single space] Wanna Learn wrote: Good morning I have a large spreadsheet. The entry in one columns has a name e.g. Mr. John Smith. what I need is to delete the middle name so that it reads Mr. Smith I tried the functions LEFT , RIGHT, and text to columns. what is the right way to do this or do I need a macro? |
delete middle word from a cell
wow, that was brilliant!
:) "Lori" escreveu na mensagem ups.com... Try Edit Replace with Find: ' * ' and Replace: ' ' [Explicitly: Find: single space followed by * followed by single space; Replace: single space] Wanna Learn wrote: Good morning I have a large spreadsheet. The entry in one columns has a name e.g. Mr. John Smith. what I need is to delete the middle name so that it reads Mr. Smith I tried the functions LEFT , RIGHT, and text to columns. what is the right way to do this or do I need a macro? |
delete middle word from a cell
Thanks - you too..
Wanna Learn wrote: Lori PERFECT! thanks have agreat day "Lori" wrote: Try Edit Replace with Find: ' * ' and Replace: ' ' [Explicitly: Find: single space followed by * followed by single space; Replace: single space] Wanna Learn wrote: Good morning I have a large spreadsheet. The entry in one columns has a name e.g. Mr. John Smith. what I need is to delete the middle name so that it reads Mr. Smith I tried the functions LEFT , RIGHT, and text to columns. what is the right way to do this or do I need a macro? |
All times are GMT +1. The time now is 11:47 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com