+ Reply to Thread
Results 1 to 4 of 4

I am trying to combine contents from 2 cells into 1

Hybrid View

  1. #1
    Darius
    Guest

    I am trying to combine contents from 2 cells into 1

    Ex: Row 1 would have first name "John" and row 2 would have last name "Doe"
    Now what I need is Row 3 to have from row 1 only first letter from the name
    and from row 2 the full lastname. I know how to combine the 2 rows but not to
    only get the first letter. Result should be JDoe in row 3

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,704
    For A3 try

    =LEFT(A1)&A2

  3. #3
    Gord Dibben
    Guest

    Re: I am trying to combine contents from 2 cells into 1

    =LEFT(A1,1) & A2

    Entered in A3

    But, I'm betting you have "row" and "column" mixed up so try

    =LEFT(A1,1) & B1

    Entered in C1


    Gord Dibben MS Excel MVP

    On Tue, 8 Aug 2006 11:20:02 -0700, Darius <Darius@discussions.microsoft.com>
    wrote:

    >Ex: Row 1 would have first name "John" and row 2 would have last name "Doe"
    >Now what I need is Row 3 to have from row 1 only first letter from the name
    >and from row 2 the full lastname. I know how to combine the 2 rows but not to
    >only get the first letter. Result should be JDoe in row 3



  4. #4
    Duke Carey
    Guest

    RE: I am trying to combine contents from 2 cells into 1

    =left(A1,1)&A2

    "Darius" wrote:

    > Ex: Row 1 would have first name "John" and row 2 would have last name "Doe"
    > Now what I need is Row 3 to have from row 1 only first letter from the name
    > and from row 2 the full lastname. I know how to combine the 2 rows but not to
    > only get the first letter. Result should be JDoe in row 3


+ 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