In Excel 2010 many rows set to 0.00 pixels. How to set all rows to another height











up vote
0
down vote

favorite












In Excel 2010, one of my co-workers set several rows to 0.00 row height. I need to set ALL rows to any other height but ZERO (0).



I have tried the following:




  1. UNHIDE

  2. FORMAT>ROW HEIGHT

  3. FORMAT>AUTO FIT ROW HEIGHT


  4. COPY>PASTE SPECIAL>VALUES ONLY (and all other PASTE options)

  5. Selecting the entire sheet then manually resizing with the cursor,
    but this only works for one row at a time.


I have hundreds of these rows to fix, so that's no good. I know my way around Excel very well, but I'm at my wits end. Any help here is appreciated.










share|improve this question




























    up vote
    0
    down vote

    favorite












    In Excel 2010, one of my co-workers set several rows to 0.00 row height. I need to set ALL rows to any other height but ZERO (0).



    I have tried the following:




    1. UNHIDE

    2. FORMAT>ROW HEIGHT

    3. FORMAT>AUTO FIT ROW HEIGHT


    4. COPY>PASTE SPECIAL>VALUES ONLY (and all other PASTE options)

    5. Selecting the entire sheet then manually resizing with the cursor,
      but this only works for one row at a time.


    I have hundreds of these rows to fix, so that's no good. I know my way around Excel very well, but I'm at my wits end. Any help here is appreciated.










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      In Excel 2010, one of my co-workers set several rows to 0.00 row height. I need to set ALL rows to any other height but ZERO (0).



      I have tried the following:




      1. UNHIDE

      2. FORMAT>ROW HEIGHT

      3. FORMAT>AUTO FIT ROW HEIGHT


      4. COPY>PASTE SPECIAL>VALUES ONLY (and all other PASTE options)

      5. Selecting the entire sheet then manually resizing with the cursor,
        but this only works for one row at a time.


      I have hundreds of these rows to fix, so that's no good. I know my way around Excel very well, but I'm at my wits end. Any help here is appreciated.










      share|improve this question















      In Excel 2010, one of my co-workers set several rows to 0.00 row height. I need to set ALL rows to any other height but ZERO (0).



      I have tried the following:




      1. UNHIDE

      2. FORMAT>ROW HEIGHT

      3. FORMAT>AUTO FIT ROW HEIGHT


      4. COPY>PASTE SPECIAL>VALUES ONLY (and all other PASTE options)

      5. Selecting the entire sheet then manually resizing with the cursor,
        but this only works for one row at a time.


      I have hundreds of these rows to fix, so that's no good. I know my way around Excel very well, but I'm at my wits end. Any help here is appreciated.







      microsoft-excel-2010






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 18 '16 at 13:39









      Prasanna

      3,07222138




      3,07222138










      asked Mar 18 '16 at 13:21









      Tim Van Wart

      11




      11






















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          1
          down vote













          Having stated this in your question




          I know my way around Excel very well, but I'm at my wits end




          I'm safely assuming that you would be able to run a simple macro in your spreadsheet and try to see if that would do the row re-sizing.



          Sub Macro2()
          Rows.Select
          Selection.EntireRow.Hidden = False
          Selection.RowHeight = 25
          End Sub


          If using VBA is an option, please try this. Feel free to change the row height from 25 to any desired height.



          Macro updated with Selection.EntireRow.Hidden = False statement. See if this works for you.






          share|improve this answer























          • Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
            – Tim Van Wart
            Mar 18 '16 at 18:43


















          up vote
          0
          down vote













          You will achieve your objective by manual row sorting.
          Make sure you select the entire sheet, upper left corner - click the intersection square.



          After selecting all cells, manually adjust the height of one of the visible rows (doesn't matter which one). All rows will become of that height, including the hidden ones.






          share|improve this answer





















          • That was one of the first things I tried, no dice. Thanks, though.
            – Tim Van Wart
            Mar 22 '16 at 13:51


















          up vote
          0
          down vote













          I just had the same problem and figured it out in my case! (Excel 2013)



          I had a table with hidden rows that I couldn't unhide at 1 time.



          I selected the table, went to the table tools design tab, convert to range, now resize rows and voila!



          Converted back to table. Had to resize some columns and reformat a little but all rows are visible now.



          I hope this helps someone else out down the road!






          share|improve this answer




























            up vote
            0
            down vote













            The rows you are trying to adjust might have a filter on it. Highlight a surrounding cell or if you can get your cursor on one of the 0-height cells, check under the Sort & Filter option to see if a filter is for some reason turned on for these cells. If it is, turn it off, and you should be able to adjust the cell heights as normal.






            share|improve this answer








            New contributor




            FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.


















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "3"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














               

              draft saved


              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1054481%2fin-excel-2010-many-rows-set-to-0-00-pixels-how-to-set-all-rows-to-another-heigh%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              4 Answers
              4






              active

              oldest

              votes








              4 Answers
              4






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              1
              down vote













              Having stated this in your question




              I know my way around Excel very well, but I'm at my wits end




              I'm safely assuming that you would be able to run a simple macro in your spreadsheet and try to see if that would do the row re-sizing.



              Sub Macro2()
              Rows.Select
              Selection.EntireRow.Hidden = False
              Selection.RowHeight = 25
              End Sub


              If using VBA is an option, please try this. Feel free to change the row height from 25 to any desired height.



              Macro updated with Selection.EntireRow.Hidden = False statement. See if this works for you.






              share|improve this answer























              • Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
                – Tim Van Wart
                Mar 18 '16 at 18:43















              up vote
              1
              down vote













              Having stated this in your question




              I know my way around Excel very well, but I'm at my wits end




              I'm safely assuming that you would be able to run a simple macro in your spreadsheet and try to see if that would do the row re-sizing.



              Sub Macro2()
              Rows.Select
              Selection.EntireRow.Hidden = False
              Selection.RowHeight = 25
              End Sub


              If using VBA is an option, please try this. Feel free to change the row height from 25 to any desired height.



              Macro updated with Selection.EntireRow.Hidden = False statement. See if this works for you.






              share|improve this answer























              • Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
                – Tim Van Wart
                Mar 18 '16 at 18:43













              up vote
              1
              down vote










              up vote
              1
              down vote









              Having stated this in your question




              I know my way around Excel very well, but I'm at my wits end




              I'm safely assuming that you would be able to run a simple macro in your spreadsheet and try to see if that would do the row re-sizing.



              Sub Macro2()
              Rows.Select
              Selection.EntireRow.Hidden = False
              Selection.RowHeight = 25
              End Sub


              If using VBA is an option, please try this. Feel free to change the row height from 25 to any desired height.



              Macro updated with Selection.EntireRow.Hidden = False statement. See if this works for you.






              share|improve this answer














              Having stated this in your question




              I know my way around Excel very well, but I'm at my wits end




              I'm safely assuming that you would be able to run a simple macro in your spreadsheet and try to see if that would do the row re-sizing.



              Sub Macro2()
              Rows.Select
              Selection.EntireRow.Hidden = False
              Selection.RowHeight = 25
              End Sub


              If using VBA is an option, please try this. Feel free to change the row height from 25 to any desired height.



              Macro updated with Selection.EntireRow.Hidden = False statement. See if this works for you.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Mar 19 '16 at 2:50

























              answered Mar 18 '16 at 13:47









              Prasanna

              3,07222138




              3,07222138












              • Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
                – Tim Van Wart
                Mar 18 '16 at 18:43


















              • Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
                – Tim Van Wart
                Mar 18 '16 at 18:43
















              Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
              – Tim Van Wart
              Mar 18 '16 at 18:43




              Dang it. It doesn't work. It does re-size the visible rows, but the "hidden" rows remain hidden.
              – Tim Van Wart
              Mar 18 '16 at 18:43












              up vote
              0
              down vote













              You will achieve your objective by manual row sorting.
              Make sure you select the entire sheet, upper left corner - click the intersection square.



              After selecting all cells, manually adjust the height of one of the visible rows (doesn't matter which one). All rows will become of that height, including the hidden ones.






              share|improve this answer





















              • That was one of the first things I tried, no dice. Thanks, though.
                – Tim Van Wart
                Mar 22 '16 at 13:51















              up vote
              0
              down vote













              You will achieve your objective by manual row sorting.
              Make sure you select the entire sheet, upper left corner - click the intersection square.



              After selecting all cells, manually adjust the height of one of the visible rows (doesn't matter which one). All rows will become of that height, including the hidden ones.






              share|improve this answer





















              • That was one of the first things I tried, no dice. Thanks, though.
                – Tim Van Wart
                Mar 22 '16 at 13:51













              up vote
              0
              down vote










              up vote
              0
              down vote









              You will achieve your objective by manual row sorting.
              Make sure you select the entire sheet, upper left corner - click the intersection square.



              After selecting all cells, manually adjust the height of one of the visible rows (doesn't matter which one). All rows will become of that height, including the hidden ones.






              share|improve this answer












              You will achieve your objective by manual row sorting.
              Make sure you select the entire sheet, upper left corner - click the intersection square.



              After selecting all cells, manually adjust the height of one of the visible rows (doesn't matter which one). All rows will become of that height, including the hidden ones.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Mar 21 '16 at 8:48









              SKYTTEN

              649




              649












              • That was one of the first things I tried, no dice. Thanks, though.
                – Tim Van Wart
                Mar 22 '16 at 13:51


















              • That was one of the first things I tried, no dice. Thanks, though.
                – Tim Van Wart
                Mar 22 '16 at 13:51
















              That was one of the first things I tried, no dice. Thanks, though.
              – Tim Van Wart
              Mar 22 '16 at 13:51




              That was one of the first things I tried, no dice. Thanks, though.
              – Tim Van Wart
              Mar 22 '16 at 13:51










              up vote
              0
              down vote













              I just had the same problem and figured it out in my case! (Excel 2013)



              I had a table with hidden rows that I couldn't unhide at 1 time.



              I selected the table, went to the table tools design tab, convert to range, now resize rows and voila!



              Converted back to table. Had to resize some columns and reformat a little but all rows are visible now.



              I hope this helps someone else out down the road!






              share|improve this answer

























                up vote
                0
                down vote













                I just had the same problem and figured it out in my case! (Excel 2013)



                I had a table with hidden rows that I couldn't unhide at 1 time.



                I selected the table, went to the table tools design tab, convert to range, now resize rows and voila!



                Converted back to table. Had to resize some columns and reformat a little but all rows are visible now.



                I hope this helps someone else out down the road!






                share|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  I just had the same problem and figured it out in my case! (Excel 2013)



                  I had a table with hidden rows that I couldn't unhide at 1 time.



                  I selected the table, went to the table tools design tab, convert to range, now resize rows and voila!



                  Converted back to table. Had to resize some columns and reformat a little but all rows are visible now.



                  I hope this helps someone else out down the road!






                  share|improve this answer












                  I just had the same problem and figured it out in my case! (Excel 2013)



                  I had a table with hidden rows that I couldn't unhide at 1 time.



                  I selected the table, went to the table tools design tab, convert to range, now resize rows and voila!



                  Converted back to table. Had to resize some columns and reformat a little but all rows are visible now.



                  I hope this helps someone else out down the road!







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Apr 24 at 14:32









                  Jesten M

                  1




                  1






















                      up vote
                      0
                      down vote













                      The rows you are trying to adjust might have a filter on it. Highlight a surrounding cell or if you can get your cursor on one of the 0-height cells, check under the Sort & Filter option to see if a filter is for some reason turned on for these cells. If it is, turn it off, and you should be able to adjust the cell heights as normal.






                      share|improve this answer








                      New contributor




                      FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.






















                        up vote
                        0
                        down vote













                        The rows you are trying to adjust might have a filter on it. Highlight a surrounding cell or if you can get your cursor on one of the 0-height cells, check under the Sort & Filter option to see if a filter is for some reason turned on for these cells. If it is, turn it off, and you should be able to adjust the cell heights as normal.






                        share|improve this answer








                        New contributor




                        FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.




















                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          The rows you are trying to adjust might have a filter on it. Highlight a surrounding cell or if you can get your cursor on one of the 0-height cells, check under the Sort & Filter option to see if a filter is for some reason turned on for these cells. If it is, turn it off, and you should be able to adjust the cell heights as normal.






                          share|improve this answer








                          New contributor




                          FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          The rows you are trying to adjust might have a filter on it. Highlight a surrounding cell or if you can get your cursor on one of the 0-height cells, check under the Sort & Filter option to see if a filter is for some reason turned on for these cells. If it is, turn it off, and you should be able to adjust the cell heights as normal.







                          share|improve this answer








                          New contributor




                          FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          share|improve this answer



                          share|improve this answer






                          New contributor




                          FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered Nov 16 at 1:40









                          FraseFrase

                          1




                          1




                          New contributor




                          FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          FraseFrase is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






























                               

                              draft saved


                              draft discarded



















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1054481%2fin-excel-2010-many-rows-set-to-0-00-pixels-how-to-set-all-rows-to-another-heigh%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Probability when a professor distributes a quiz and homework assignment to a class of n students.

                              Aardman Animations

                              Are they similar matrix