+ Reply to Thread
Results 1 to 5 of 5

Combine multiple columns of data into one column???

  1. #1
    Registered User
    Join Date
    03-06-2013
    Location
    Waconia, MN
    MS-Off Ver
    Excel 2010
    Posts
    4

    Combine multiple columns of data into one column???

    sample1.xlsx

    Sample file attached. How do I combine the data in columns B-E into column A? Obviously in my sample file you'd use a simple cut/paste but my actual file has hundreds of columns and rows so cut/paste isn't an option. I need to move all the data into column A. Maybe this is simple but I can't figure it out nor find a similar post as I'm not sure the best way to search for this topic. Thanks for your help.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Combine multiple columns of data into one column???

    Your column A does not represent what you have described, the attached file has another separate entry in Column A.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    03-06-2013
    Location
    Waconia, MN
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Combine multiple columns of data into one column???

    Ok, I corrected my file and re-attached it. Basically I want to know how to move the data from columns B-E into column A. If it can be done without a macro or VBA that would be great as I know nothing about either. Thanks.

    sample1.xlsx

  4. #4
    Registered User
    Join Date
    03-07-2013
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2010
    Posts
    10

    Re: Combine multiple columns of data into one column???

    I don't quite understand the question based on what you posted, but if you want to simply have the contents of columns B-E appear in column A, then use:

    =CONCATENATE(B1," ",C1," ",D1," ",E1)

    For your attachment, I get:

    JON SELLENRICK AR1111955 MASON BENNETT AR1111955 SCOTT DESOTEL AR1111955 STEVE PIGG AR1111955

    I added spaces to make it easier to read, but it doesn't really make much of a difference with that data.

    Hope that helps.

    rky.

  5. #5
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Combine multiple columns of data into one column???

    I would definitely use a macro to do this.

    Please Login or Register  to view this content.

    How/Where to install the macro:

    1. Open up your workbook
    2. Get into VB Editor (Press Alt+F11)
    3. Insert a new module (Insert > Module)
    4. Copy and Paste in your code (given above)
    5. Get out of VBA (Press Alt+Q)
    6. Save as a macro-enabled workbook

    The macro is installed and ready to use.

    Bring the sheet with the data onscreen, then press Alt-F8 and select TransposeData from the macro list.

+ 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