+ Reply to Thread
Results 1 to 5 of 5

How to arrange number from row to column

  1. #1
    Registered User
    Join Date
    08-26-2012
    Location
    malaysia
    MS-Off Ver
    Excel 2003
    Posts
    84

    How to arrange number from row to column

    Hi All

    I have many number in row A4. How to arrange the number from row A4 to column A only

    Example

    Now

    (row A4) 2366.32 (row B4) 2468.51 (row C4) 2473.23 (row D4) 2570.72

    Change to

    (column A4) 2366.32
    (column A5) 2468.51
    (column A6) 2473.23
    (column A7) 2570.72

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: How to arrange number from row to column

    Place in A5 and copy down...

    =INDEX($A$4:$D$4,ROW(A2))
    HTH
    Regards, Jeff

  3. #3
    Registered User
    Join Date
    08-26-2012
    Location
    malaysia
    MS-Off Ver
    Excel 2003
    Posts
    84

    Re: How to arrange number from row to column

    Thanks jeffreybrown.

    I want to know why need to place A2

    =INDEX($A$4:$D$4,ROW(A2))

  4. #4
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: How to arrange number from row to column

    Quote Originally Posted by redza View Post
    I want to know why need to place A2
    Row(A2) returns the row number. As you drag the formula down, Row(A2), changes to Row(A3), Row(A4) and so on...

    Basically it just keeps us from having to manually change the row_num as we drag down.

    =INDEX($A$4:$D$4,ROW(A2)) >> =INDEX($A$4:$D$4,2)
    =INDEX($A$4:$D$4,ROW(A3)) >> =INDEX($A$4:$D$4,3)
    =INDEX($A$4:$D$4,ROW(A4)) >> =INDEX($A$4:$D$4,4)

    Since you have the first number in A4 already, then B4 is the second number in the array to return and so on...

  5. #5
    Valued Forum Contributor
    Join Date
    05-20-2013
    Location
    Ohio, USA
    MS-Off Ver
    Excel 2013
    Posts
    941

    Re: How to arrange number from row to column

    Too slow

    Don't u just hate it when someone posts while ur typing up a reply...

+ 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. [SOLVED] re-arrange column and rows?
    By qokalp in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 12-07-2012, 05:44 AM
  2. Formula to Arrange number's position
    By Jordans121 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-22-2010, 04:22 AM
  3. Re-arrange rows by column
    By excel_newb2 in forum Excel General
    Replies: 1
    Last Post: 11-06-2006, 11:10 PM
  4. [SOLVED] Arrange column after delete
    By Gil in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-06-2006, 07:10 PM
  5. Sort & Arrange Column A
    By DaveUK in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-19-2005, 09:22 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