+ Reply to Thread
Results 1 to 19 of 19

Request = transpose multiple columns of three numbers into a single column and delete blan

  1. #1
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Request = transpose multiple columns of three numbers into a single column and delete blan

    please
    ex= 000 000 000 000...
    000
    000
    000
    000
    https://www.excelforum.com/attachmen...1&d=1509795251
    Attached Files Attached Files

  2. #2
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    And also delete blank lines, that is, join the columns in a single column, please

  3. #3
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Hi jorel- This processes the active worksheet, condensing all rows into a single uninterrupted column of values.
    Original cells are erased; output is placed in column A.
    Please Login or Register  to view this content.
    Last edited by leelnich; 11-04-2017 at 10:36 AM.
    Clicking the Add Reputation star below helpful posts is a great way to show your appreciation.
    Please mark your threads as SOLVED upon conclusion (Thread Tools above Post # 1). - Lee

  4. #4
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Hello, the correct one is a column but with three numbers
    Have to stay like this
    You have to stay in a column but in 3 numbers
    00 00 00 corret
    00 00 00
    00 00 00
    .....
    00
    00 error
    00

  5. #5
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    corret
    00 00 00
    00 00 00
    00 00 00
    00 00 00
    ....

  6. #6
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    hello, leelnich
    corret is
    00 00 00
    00 00 00
    00 00 00
    .......

  7. #7
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Sorry, I have to go to work. I'll try to pick this up later...

  8. #8
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    ok, colunn
    00 00 00
    00 00 00
    ....

  9. #9
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    hello, please

  10. #10
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,525

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    It looks like you attached a workbook with 4500 rows of data that is not near anything like your post 1.
    At least I can't make head or tails out of it.
    Need a better explanation or preferably a representative attachment with a before and after and an explanation how you arrived at the result.

  11. #11
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Hello, joliva, I just need you to organize in a single column of three numbers
    * 000
    000
    .. in .txt in two houses 00 00 00
    * For another solft read, but you need to organize only one column !! please

  12. #12
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    hello LEELNICH, PLEASE

  13. #13
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    For Each c In .Columns(3).Cells
    inArray = Range(c, c.End(xlToRight)).Value
    For i = 1 To UBound(inArray, 2)
    outArray((count + i), 1) = inArray(1, 1) error
    Next
    count = count + i - 3
    Next

  14. #14
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    hello leel. please!

  15. #15
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Sorry, I had a busy weekend. This reads each constant on the active sheet (left to right, top to bottom) and returns them to a new sheet in 3-column groups.
    Please Login or Register  to view this content.
    Last edited by leelnich; 11-07-2017 at 01:03 PM. Reason: Order of output corrected

  16. #16
    Forum Expert 63falcondude's Avatar
    Join Date
    08-22-2016
    Location
    USA
    MS-Off Ver
    365
    Posts
    6,266

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Quote Originally Posted by jorel View Post
    hello LEELNICH, PLEASE
    Quote Originally Posted by jorel View Post
    hello leel. please!
    Please remember that those who help here do so voluntarily and of their own goodwill.
    They live in many different time zones and many will be out at work right now if they are not asleep on the other side of the globe.

    This is not a paid 'service': members will help when they are ready and able to do so, and not 'on demand'.
    Please do not try to put pressure of time on anyone here: if you get the help you need today, that's fine, but you really should not count on it.

    Thanks for your understanding and patience.

  17. #17
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Ohh, ok perfect, very good work leelnich, congratulations, conglatulations
    * thank you

  18. #18
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Please see post#15 for updated code. (Order of output has been corrected)

    Here's an alternative. Output "oo oo oo" to 1 column (instead of 3) on a new sheet:
    Please Login or Register  to view this content.
    Last edited by leelnich; 11-07-2017 at 01:06 PM.

  19. #19
    Forum Contributor
    Join Date
    11-29-2014
    Location
    brasil
    MS-Off Ver
    excel 2016
    Posts
    2,175

    Re: Request = transpose multiple columns of three numbers into a single column and delete

    Hello, ok both conditions are working pretty good job
    Leel, I have in the other topic is about doubles with repetition of digits to exclude
    Can you see this in the other post?
    Thank you leel = conglatutualtions

+ 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. Code request to delete numbers in column B automatically
    By mso3 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-24-2014, 12:53 AM
  2. [SOLVED] transpose multiple columns for a single row
    By marreco in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 02-16-2014, 11:15 AM
  3. Transpose Multiple Columns into a Single Row
    By gabevece in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 09-15-2013, 07:26 PM
  4. Replies: 5
    Last Post: 05-25-2013, 07:12 AM
  5. Replies: 4
    Last Post: 01-14-2011, 09:30 PM
  6. Transpose multiple text-based columns to single column while retaining record ids
    By SchoobsVT in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 04-06-2010, 12:26 PM
  7. Transpose Multiple Columns to Single Row
    By whicks in forum Excel General
    Replies: 7
    Last Post: 02-06-2006, 01:30 PM

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