Remove spaces between words

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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"
 
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
 
Back
Top