Remove spaces between words

G

Guest

In Excel is there a SHFT command that can remove spaces between words.
I need to concatenate the left four letters of the family name with the left
two letters of the first name to achieve an individual code of six letters.
However, some family names have a space. eg: De Vries Van Housten.
I need to "Shift" the letters to the left to remove the space so that

Janet De Vries becomes DEVRJA, not (as I'm getting) DE VJA

Help me, I have a lot of these to do!
Heather
 
D

David McRitchie

If Janet in not in the cell and it is just De Vries
then you can use

B1: De Vries
C1: Janet
D1: =UPPER(LEFT(SUBSTITUTE(B1," ",""),3) & left(C1,2))

If they are all in one cell what if you had "Nancy Jo Cotton"
 
M

Myrna Larson

Assuming the last name is in A1 and the first name in B1:

=LEFT(SUBSTITUTE(A1," ",""),4)&LEFT(B1,2)

If the names are as you show, in one cell, this won't work.


On Fri, 30 Sep 2005 16:43:01 -0700, "Heather Tavitian" <Heather
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top