+ Reply to Thread
Results 1 to 3 of 3

Take multiple column'S values and APPEND 1 long consecutive column

  1. #1
    Registered User
    Join Date
    06-26-2015
    Location
    nyc
    MS-Off Ver
    2007
    Posts
    4

    Take multiple column'S values and APPEND 1 long consecutive column

    take columns ABC and create a consecutive column D - just appending A TO B TO C
    A B C D
    ---- ---- ---- ----
    AAA BBB CCC AAA
    Asia Asia Asia Asia
    RED RED RED RED
    DDD DDD DDD DDD
    1BOL 1BOL 1BOL 1BOL
    Merc Merc Merc Merc
    ---------------- BBB
    ---------------- Asia
    ---------------- RED
    ---------------- DDD
    ---------------- 1BOL
    ---------------- Merc
    ---------------- CCC
    ---------------- Asia
    ---------------- RED
    ---------------- DDD
    ---------------- 1BOL
    ---------------- Merc
    Last edited by jcpreta; 06-27-2015 at 08:48 PM.

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: Take multiple column'S values and APPEND 1 long consecutive column

    You seem to be missing some values from your sample answer?

    A
    B
    C
    D
    E
    F
    2
    AAA BBB CCC AAA AAA
    3
    Asia Asia Asia Asia BBB
    4
    RED RED RED RED CCC
    5
    DDD DDD DDD DDD Asia
    6
    1BOL 1BOL 1BOL 1BOL Asia
    7
    Merc Merc Merc Merc Asia
    8
    RED
    9
    RED
    10
    RED
    11
    DDD
    12
    DDD
    13
    DDD
    14
    1BOL
    15
    1BOL
    16
    1BOL
    17
    Merc
    18
    Merc
    19
    Merc

    F2=OFFSET($A$2,INT(ROW(A3)/3)-1,MOD(ROW(A2)-2,3))
    copied down
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Take multiple column'S values and APPEND 1 long consecutive column

    I think this is what they wanted...

    Data Range
    A
    B
    C
    D
    E
    1
    ------
    ------
    ------
    ------
    ------
    2
    1
    7
    13
    1
    3
    2
    8
    14
    2
    4
    3
    9
    15
    3
    5
    4
    10
    16
    4
    6
    5
    11
    17
    5
    7
    6
    12
    18
    6
    8
    7
    9
    8
    10
    9
    11
    10
    12
    11
    13
    12
    14
    13
    15
    14
    16
    15
    17
    16
    18
    17
    19
    18
    20


    This formula entered in E2 and copied down:

    =OFFSET(A$2,MOD(ROWS(E$2:E2)-1,6),INT((ROWS(E$2:E2)-1)/6))
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 9
    Last Post: 12-29-2014, 03:07 AM
  2. How would you count (& denote) consecutive values in a column?
    By schill2 in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 11-24-2013, 12:16 PM
  3. multiple columns data append in single column
    By suresh3566 in forum Excel General
    Replies: 3
    Last Post: 06-11-2011, 07:52 AM
  4. How to append multiple resulted values into a column?
    By Excel_Kid in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 06-05-2010, 09:57 PM
  5. Replies: 2
    Last Post: 06-05-2010, 08:18 AM

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