Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default combine titles/names - how?

Hi
I have titles & names is two columns
in column c I have
Aiken Mr R.
Aiken Mrs C.
Bell Mr D.
Bell Mrs E.
etc, etc,

In column d I have
Robert
Carol
David
Elaine
etc, etc

How do I join the title/name to get
Aiken Mr Robert etc, etc
--
Martin
©¿©¬
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default combine titles/names - how?

Hi,

In E1 and drag down

=LEFT(C1,(FIND("|",SUBSTITUTE(C1," ","|",2)))-1)&" "&D1

Mike

"Martin ©¿©¬ @nohere.net" wrote:

Hi
I have titles & names is two columns
in column c I have
Aiken Mr R.
Aiken Mrs C.
Bell Mr D.
Bell Mrs E.
etc, etc,

In column d I have
Robert
Carol
David
Elaine
etc, etc

How do I join the title/name to get
Aiken Mr Robert etc, etc
--
Martin
©¿©¬

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default combine titles/names - how?

Another

=LEFT(TRIM(C1),LEN(TRIM(C1))-2)&D1

Mike

"Mike H" wrote:

Hi,

In E1 and drag down

=LEFT(C1,(FIND("|",SUBSTITUTE(C1," ","|",2)))-1)&" "&D1

Mike

"Martin ©¿©¬ @nohere.net" wrote:

Hi
I have titles & names is two columns
in column c I have
Aiken Mr R.
Aiken Mrs C.
Bell Mr D.
Bell Mrs E.
etc, etc,

In column d I have
Robert
Carol
David
Elaine
etc, etc

How do I join the title/name to get
Aiken Mr Robert etc, etc
--
Martin
©¿©¬

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default combine titles/names - how?

On Sat, 3 Oct 2009 05:55:01 -0700, Mike H
wrote:

Hi,
In E1 and drag down
=LEFT(C1,(FIND("|",SUBSTITUTE(C1," ","|",2)))-1)&" "&D1


Thank you very much Mike
That did the job
--
Martin
©¿©¬
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 58
Default combine titles/names - how?

Minor recommendation, I would keep the formula below but will change the -2
to -0 if you really need to display the entire name in column C. The -2
removes that number of characters from the name in C1. Other than that, this
formula works great.
--
tech1NJ


"Mike H" wrote:

Another

=LEFT(TRIM(C1),LEN(TRIM(C1))-2)&D1

Mike

"Mike H" wrote:

Hi,

In E1 and drag down

=LEFT(C1,(FIND("|",SUBSTITUTE(C1," ","|",2)))-1)&" "&D1

Mike

"Martin ©¿©¬ @nohere.net" wrote:

Hi
I have titles & names is two columns
in column c I have
Aiken Mr R.
Aiken Mrs C.
Bell Mr D.
Bell Mrs E.
etc, etc,

In column d I have
Robert
Carol
David
Elaine
etc, etc

How do I join the title/name to get
Aiken Mr Robert etc, etc
--
Martin
©¿©¬



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default combine titles/names - Again

When I use the formula =LEFT(TRIM(C1),LEN(TRIM(C1))-0)&D1 the names
come out as Mr & Mrs R.Aiken etc etc
How would I change the formula to create
Mr & Mrs R. Aiken (with a space after the period)?
--
Martin
©¿©¬



On Sun, 4 Oct 2009 12:41:01 -0700, tech1NJ
wrote:

Minor recommendation, I would keep the formula below but will change the -2
to -0 if you really need to display the entire name in column C. The -2
removes that number of characters from the name in C1. Other than that, this
formula works great.
--
tech1NJ


"Mike H" wrote:

Another

=LEFT(TRIM(C1),LEN(TRIM(C1))-2)&D1

Mike

"Mike H" wrote:

Hi,

In E1 and drag down

=LEFT(C1,(FIND("|",SUBSTITUTE(C1," ","|",2)))-1)&" "&D1

Mike

"Martin ©¿©¬ @nohere.net" wrote:

Hi
I have titles & names is two columns
in column c I have
Aiken Mr R.
Aiken Mrs C.
Bell Mr D.
Bell Mrs E.
etc, etc,

In column d I have
Robert
Carol
David
Elaine
etc, etc

How do I join the title/name to get
Aiken Mr Robert etc, etc
--
Martin
©¿©¬

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default combine titles/names - Again

try this

=LEFT(TRIM(C1),LEN(TRIM(C1))-0)&" "&D1
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Martin ©¿©¬ @nohere.net" wrote:

When I use the formula =LEFT(TRIM(C1),LEN(TRIM(C1))-0)&D1 the names
come out as Mr & Mrs R.Aiken etc etc
How would I change the formula to create
Mr & Mrs R. Aiken (with a space after the period)?
--
Martin
©¿©¬



On Sun, 4 Oct 2009 12:41:01 -0700, tech1NJ
wrote:

Minor recommendation, I would keep the formula below but will change the -2
to -0 if you really need to display the entire name in column C. The -2
removes that number of characters from the name in C1. Other than that, this
formula works great.
--
tech1NJ


"Mike H" wrote:

Another

=LEFT(TRIM(C1),LEN(TRIM(C1))-2)&D1

Mike

"Mike H" wrote:

Hi,

In E1 and drag down

=LEFT(C1,(FIND("|",SUBSTITUTE(C1," ","|",2)))-1)&" "&D1

Mike

"Martin ©¿©¬ @nohere.net" wrote:

Hi
I have titles & names is two columns
in column c I have
Aiken Mr R.
Aiken Mrs C.
Bell Mr D.
Bell Mrs E.
etc, etc,

In column d I have
Robert
Carol
David
Elaine
etc, etc

How do I join the title/name to get
Aiken Mr Robert etc, etc
--
Martin
©¿©¬

.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 80
Default combine titles/names - Again

On Mon, 22 Mar 2010 05:25:01 -0700, Mike H
wrote:

try this

=LEFT(TRIM(C1),LEN(TRIM(C1))-0)&" "&D1


Thank you Mike
That did the trick
--
Martin
©¿©¬
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
HOW DO I COMBINE two spreadsheets into one by names in column a MAD101 Excel Discussion (Misc queries) 3 October 20th 08 01:12 PM
Column Titles/Names fishkner Setting up and Configuration of Excel 1 January 13th 08 04:16 PM
Combine several Names in one folder with if-formula Vic1978 Excel Discussion (Misc queries) 4 December 7th 05 12:38 PM
how do I combine cells (names) fiji41 Excel Discussion (Misc queries) 2 June 16th 05 12:19 AM
Combine names seperated by comma bbc1 Excel Discussion (Misc queries) 3 February 13th 05 07:55 PM


All times are GMT +1. The time now is 07:48 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"