+ Reply to Thread
Results 1 to 18 of 18

Automatically transpose the data in sheet 1 rows into columns in sheet 2.

  1. #1
    Registered User
    Join Date
    12-14-2014
    Location
    Philippines
    MS-Off Ver
    MS Office 2007
    Posts
    5

    Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Will someone please help me on how to automatically transfer the data in sheet 1 (which are in rows) into columns in sheet 2.

    I have done this using a VBA, but what I need is to do this without the use of a VBA. Is it even possible?
    Also, I don't want to use the formula: =INDIRECT("Sheet1!"&ADDRESS(1,ROW())) because I have to put it manually on each cell.

    What I want to happen is, once you input something in sheet 1, it automatically transpose the data into columns in sheet 2.

    like this for example,
    this is what the sheet 1 looks like:
    1.JPG

    then it will be displayed in sheet 2 like this:
    2.JPG


    Please help me on this. Advance thank you.
    Last edited by Azalea11; 12-16-2014 at 02:27 AM.

  2. #2
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Hi,

    Goto Sheet2 and select A1:C5, press F2, and input this array formula :

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    and end this by hold and press Ctrl Shift Enter at the same time (because this is an array formula, not a regular formula)

    Regards
    1. I care dog
    2. I am a loop maniac
    3. Forum rules link : Click here
    3.33. Don't forget to mark the thread as solved, this is important

  3. #3
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,707

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Here's a non-array formula in Sheet2 A1:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    then fill down 5 rows and across 3 columns.

    Is this what you meant?
    Last edited by FlameRetired; 12-15-2014 at 01:39 AM.

  4. #4
    Registered User
    Join Date
    12-14-2014
    Location
    Philippines
    MS-Off Ver
    MS Office 2007
    Posts
    5

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Thank you for your answer FlameRetired and karedog, they are both indeed correct but what I meant is to make it automatic which I don't have to fill down other cells . When I input something in sheet 1, it should automatically appear in sheet 2, no need to fill down the cells in sheet 2. I was asked to do it that way... it will be made into a template, but I don't have any idea how, if you know how can you please help me with this. Thanks.

  5. #5
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Auto creation values/formulas without VBA ? Impossible.

    You however can enlarge the range to accommodate you future input data, so :

    For my formula, select enlarged area, say A1:IV256 and the array formula is :
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    For FlameRetired's formula, it will be :
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    But since all the cell's is filled with formula, you will see a performance issue here.
    I think your previous way using VBA (Worksheet_Change() event) is the best way for dynamic, irregular data.

    Regards

  6. #6
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,707

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    The only way that I know how to do that would be to fill down and across further in both directions than you believe you will likely need.

    As for the other part of the automatic it sounds like you could use a dynamic range in Sheet1. I'll try to work one out and upload a file.

  7. #7
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,939

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    =IFERROR(INDEX(OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),COUNTA(Sheet1!$1:$1)),COLUMN(),ROW()),"")
    Try this in Sheet 2 and copy across
    Attached Files Attached Files
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  8. #8
    Registered User
    Join Date
    12-14-2014
    Location
    Philippines
    MS-Off Ver
    MS Office 2007
    Posts
    5

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    @Karedog, that's what I thought too. That's why I did it first with VBA but they don't want to use VBA. I also tried to do that, and it has issue... maybe the only way is to do it manually -_- Anyways, thank you for all the help.


    @FlameRetired, if you worked one out please do upload it. Thank you.

  9. #9
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,939

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    See Post No 7

  10. #10
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,707

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by Azalea11;
    ....................
    [B
    @FlameRetired[/B], if you worked one out please do upload it. Thank you.
    OK. But did you see what nflsales uploaded. The formula in that file takes care of it. Mine is a bit clumsy. It has two dynamic named ranges: one if the

    last row of source data is numeric and another one if text. They are swappable.

    In Name Manager you'll find these:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    In Sheet2 A1 this for numeric:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    This one for text:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    Fill down and across as before.

    I believe you will find nflsales dynamic range to be much more flexible. I don't know if the volatile OFFSET will be an issue, though.
    You have three formulas to choose from.

    I've attached my file. Ctrl + F3 will bring up Name Manager. You can see the range formulas there.

    PS...the "frowns" in the formulas above were not intentional. They seem to have replaced some of the text in the formulas.
    Attached Files Attached Files
    Last edited by FlameRetired; 12-15-2014 at 03:49 AM.

  11. #11
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,707

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Here's another dynamic formula. It is not so limited as my previous, and is not volatile in case that should become an issue:

    =IFERROR(INDEX((Sheet1!$A$1:INDEX(Sheet1!$1:$1,0,COUNTA(Sheet1!$1:$1)))Sheet1!$A$1:INDEX(Sheet1!$A:$A,COUNTA(Sheet1!$A:$A))),COLUMNS($A:A),ROWS($1:1)),"")


    Hope that's better.

    Edit: The frowns keep showing up. Replace that with a colon and an open parentheses.
    Last edited by FlameRetired; 12-15-2014 at 04:18 AM.

  12. #12
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by Azalea11 View Post
    maybe the only way is to do it manually -_- Anyways, thank you for all the help.
    You are welcome.
    If you intend to do this manually, then why don't you make an addin or use a VBScript instead ? This way, you keep your Excel file free from macro(s) and you can save the file in .xlsx format.

    This is an example using VBScript, open notepad, paste the code below, and save with ".vbs" file extension and then run it :

    Please Login or Register  to view this content.
    and then you will be known as the fastest typer in the world.

    Regards

  13. #13
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by FlameRetired View Post
    The frowns keep showing up. Replace that with a colon and an open parentheses.
    And that is why the CODE tags is very handy

  14. #14
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,707

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by karedog View Post
    And that is why the CODE tags is very handy
    Yes, I thought so, too. That's why I didn't use them this time. The frowns showed up with the code tags, too (see post 10). Thought going without

    them might help.....I was wrong.

  15. #15
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by FlameRetired View Post
    Yes, I thought so, too. That's why I didn't use them this time. The frowns showed up with the code tags, too (see post 10). Thought going without

    them might help.....I was wrong.
    No, I mean code tag (the one with # symbol), not the formula tag (the one with fx symbol).

    This is using formula tag :
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    This is using code tag :
    Please Login or Register  to view this content.
    You can quote this post to see the bbcode.
    Just sharing an info

    Regards

  16. #16
    Registered User
    Join Date
    12-14-2014
    Location
    Philippines
    MS-Off Ver
    MS Office 2007
    Posts
    5

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Thank you for all your help karedog, FlameRetired and nflsales :D I appreciate it so much

  17. #17
    Forum Moderator
    Join Date
    01-21-2014
    Location
    St. Joseph, Illinois U.S.A.
    MS-Off Ver
    Office 365 V 2503
    Posts
    13,707

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by karedog View Post
    No, I mean code tag (the one with # symbol), not the formula tag (the one with fx symbol).

    This is using formula tag :
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    This is using code tag :
    Please Login or Register  to view this content.
    You can quote this post to see the bbcode.
    Just sharing an info

    Regards
    Thank you karedog!!

  18. #18
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: Automatically transpose the data in sheet 1 rows into columns in sheet 2.

    Quote Originally Posted by Azalea11 View Post
    Thank you for all your help karedog, FlameRetired and nflsales :D I appreciate it so much
    You are welcome, glad I can help.


    Quote Originally Posted by FlameRetired View Post
    Thank you karedog!!
    You are welcome, just sharing my non Excel knowledge (the bbcode exactly), hope that this info can help to avoid the future same formatting problems.


    Regards

+ 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] Transpose Rows from a Sheet to Columns in another
    By wacky_diva in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-24-2013, 03:19 AM
  2. Transpose multiple rows to columns sheet attached
    By ahad_bwp in forum Excel General
    Replies: 4
    Last Post: 07-11-2012, 08:51 AM
  3. Replies: 4
    Last Post: 04-08-2011, 11:42 PM
  4. Replies: 1
    Last Post: 04-07-2011, 03:44 PM
  5. Automatically put data in sheet 2 when rows in sheet 1 exceed 65356.
    By NewToExcelHelp in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-31-2008, 07:24 PM

Tags for this Thread

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