+ Reply to Thread
Results 1 to 4 of 4

using data from 2 cells

  1. #1
    Louise
    Guest

    using data from 2 cells

    Dear all

    I have a column containing people's names and in another column I need to
    re-enter their name but only with the first letter of their forename and the
    whole of their surname.

    For example, in A1 I have Karen Jones. In cell B1, I need to enter kjones
    (in lower case preferably).

    Is there a formla I can use to do this, or do I have to type them
    individually?

    Thank you.
    louise

  2. #2
    Hans Knudsen
    Guest

    Re: using data from 2 cells

    =LOWER(LEFT(A1,1)&LOWER(MID(A1,FIND(" ",A1,1)+1,255)))
    should work for one surname, but for example George Walker Bush will appear as: gwalker bush. Do you want this as gwalkerbush?

    Hans


    "Louise" <[email protected]> skrev i en meddelelse news:[email protected]...
    > Dear all
    >
    > I have a column containing people's names and in another column I need to
    > re-enter their name but only with the first letter of their forename and the
    > whole of their surname.
    >
    > For example, in A1 I have Karen Jones. In cell B1, I need to enter kjones
    > (in lower case preferably).
    >
    > Is there a formla I can use to do this, or do I have to type them
    > individually?
    >
    > Thank you.
    > louise




  3. #3
    Louise
    Guest

    Re: using data from 2 cells

    Hello
    Thanks very much for this, it will save me loads of time!

    Yes, I would want it to appear as gwalkerbush...

    Louise

    "Hans Knudsen" wrote:

    > =LOWER(LEFT(A1,1)&LOWER(MID(A1,FIND(" ",A1,1)+1,255)))
    > should work for one surname, but for example George Walker Bush will appear as: gwalker bush. Do you want this as gwalkerbush?
    >
    > Hans
    >
    >
    > "Louise" <[email protected]> skrev i en meddelelse news:[email protected]...
    > > Dear all
    > >
    > > I have a column containing people's names and in another column I need to
    > > re-enter their name but only with the first letter of their forename and the
    > > whole of their surname.
    > >
    > > For example, in A1 I have Karen Jones. In cell B1, I need to enter kjones
    > > (in lower case preferably).
    > >
    > > Is there a formla I can use to do this, or do I have to type them
    > > individually?
    > >
    > > Thank you.
    > > louise

    >
    >
    >


  4. #4
    Hans Knudsen
    Guest

    Re: using data from 2 cells

    =SUBSTITUTE(LOWER(LEFT(A2,1)&LOWER(MID(A2,FIND(" ",A2,1)+1,255)))," ","")

    Hans



    "Louise" <[email protected]> skrev i en meddelelse news:[email protected]...
    > Hello
    > Thanks very much for this, it will save me loads of time!
    >
    > Yes, I would want it to appear as gwalkerbush...
    >
    > Louise
    >
    > "Hans Knudsen" wrote:
    >
    >> =LOWER(LEFT(A1,1)&LOWER(MID(A1,FIND(" ",A1,1)+1,255)))
    >> should work for one surname, but for example George Walker Bush will appear as: gwalker bush. Do you want this as gwalkerbush?
    >>
    >> Hans
    >>
    >>
    >> "Louise" <[email protected]> skrev i en meddelelse news:[email protected]...
    >> > Dear all
    >> >
    >> > I have a column containing people's names and in another column I need to
    >> > re-enter their name but only with the first letter of their forename and the
    >> > whole of their surname.
    >> >
    >> > For example, in A1 I have Karen Jones. In cell B1, I need to enter kjones
    >> > (in lower case preferably).
    >> >
    >> > Is there a formla I can use to do this, or do I have to type them
    >> > individually?
    >> >
    >> > Thank you.
    >> > louise

    >>
    >>
    >>




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1