+ Reply to Thread
Results 1 to 10 of 10

Splitting a list of data into multiple columns

  1. #1
    Registered User
    Join Date
    11-12-2009
    Location
    Canada
    MS-Off Ver
    Excel 2007
    Posts
    1

    Splitting a list of data into multiple columns

    Thanks for looking at my thread. I have a question about Excel. I apologize in advance if I don't do a great job of explaining what I am trying to do, it is kind of difficult to explain..

    I am using Excel 2007.

    I would like to be able to input a list of text data and have Excel split the list up into different columns. I would like to be able to set a maximum number of cells to use per column. That way, once the list has reached the limit, the next piece of data would be at the top of the next column, and the process would be repeated until there was no more data left.

    For example, if I have the following data:

    A
    B
    C
    D
    E
    F
    G
    H
    I
    J
    K
    L
    M
    N
    O

    I would like to be able to set a maximum number of cells per column. If I chose to allow a maximum of 5 cells per column, the output would look like this:

    A____F____K
    B____G____L
    C____H____M
    D____I_____N
    E____J____O

    I would like to be able to keep the data in the order in which it was inputted.

    Does anybody know how I could do this?

    Thanks
    Last edited by PeterGriffin; 11-12-2009 at 11:24 PM.

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Splitting a list of data into multiple columns

    How about the attached:

    Note:
    The 7 in the formula stems from the fact that the table starts in column G, which is the 8th column
    The formula multiplies the table column with the entries per column to arrive at the required row offset.
    If you copy this to your own spreadsheet, you need to adjust the 7 to reflect the start column of your grid.

    hth

  3. #3
    Forum Expert
    Join Date
    10-10-2008
    Location
    Northeast Pennsylvania, USA
    MS-Off Ver
    Excel 2007
    Posts
    2,387

    Re: Splitting a list of data into multiple columns

    PeterGriffin,

    Welcome to the Excel Forum.

    With your data in column A, beginning in row 1.



    Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

    Adding the Macro
    1. Copy the below macro, by highlighting the macro code and pressing the keys CTRL + C
    2. Open your workbook
    3. Press the keys ALT + F11 to open the Visual Basic Editor
    4. Press the keys ALT + I to activate the Insert menu
    5. Press M to insert a Standard Module
    6. Paste the code by pressing the keys CTRL + V
    7. Press the keys ALT + Q to exit the Editor, and return to Excel
    8. To run the macro from Excel, open the workbook, and press ALT + F8 to display the Run Macro Dialog. Double Click the macro's name to Run it.


    Please Login or Register  to view this content.

    Then run the "SplitData" macro.
    Have a great day,
    Stan

    Windows 10, Excel 2007, on a PC.

    If you are satisfied with the solution(s) provided, please mark your thread as Solved by clicking EDIT in your original post, click GO ADVANCED and set the PREFIX box to SOLVED.

  4. #4
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Splitting a list of data into multiple columns

    There you go, Peter! Two completely different approaches. One with and one without VBA. All delivered within 90 minutes.

    You've gotta love this forum!

  5. #5
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Splitting a list of data into multiple columns

    Then again.... someone's sure to pipe up about volatile etc, so, instead of the volatile offset formula,

    =IF(ROW()>$E$1+1,"",OFFSET($A$1,(ROW()+(COLUMN()-7)*$E$1)-2,0))

    you can also use the non-volatile index version.

    =IF(ROW()>$E$1+1,"",INDEX($A:$A,(ROW()+(COLUMN()-7)*$E$1)-1))

    If your spreadsheet is big and the formula has to crunch a lot of data, you may notice a difference.

    But probably not.
    Last edited by teylyn; 11-13-2009 at 12:57 AM.

  6. #6
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Splitting a list of data into multiple columns

    Quote Originally Posted by Teylyn
    ...someone's sure to pipe up about volatile etc,...If your spreadsheet is big and the formula has to crunch a lot of data, you may notice a difference.

    But probably not.
    I'd simply quote Charles Williams:

    Avoid volatile functions wherever possible
    and to be frank I'd take his advice on the subject of XL Calculation over anyone else's.

  7. #7
    Registered User
    Join Date
    12-17-2013
    Location
    Lisbon
    MS-Off Ver
    Excel 2007
    Posts
    24

    Re: Splitting a list of data into multiple columns

    Hello !

    This Macro works amazingly, but, my list has 2 Columns :|
    Can someone please adapt this macro to work on a 2 column list ?

    Would be amazing !

    Thank you.

  8. #8
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,941

    Re: Splitting a list of data into multiple columns

    Darker0ne,
    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    Ben Van Johnson

  9. #9
    Registered User
    Join Date
    11-14-2015
    Location
    Rio de Janeiro, Brazil
    MS-Off Ver
    2013
    Posts
    6

    Re: Splitting a list of data into multiple columns

    Hello!
    I need help doing exactly the opposite of this threat.
    Let me explain:
    I have 3 columns A, B, C
    I want to join them back in a list so column D would have the content of the 3 columns D1=A1 D2=B1 D3=C1 D4=A2 D5=B2 and so on

    is this possible?

    thanks

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

    Re: Splitting a list of data into multiple columns

    See post #8.
    _________________
    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!)

+ 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