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:
UNHIDE
FORMAT>ROW HEIGHT
FORMAT>AUTO FIT ROW HEIGHT
COPY>PASTE SPECIAL>VALUES ONLY
(and all other PASTE options)- 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
add a comment |
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:
UNHIDE
FORMAT>ROW HEIGHT
FORMAT>AUTO FIT ROW HEIGHT
COPY>PASTE SPECIAL>VALUES ONLY
(and all other PASTE options)- 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
add a comment |
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:
UNHIDE
FORMAT>ROW HEIGHT
FORMAT>AUTO FIT ROW HEIGHT
COPY>PASTE SPECIAL>VALUES ONLY
(and all other PASTE options)- 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
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:
UNHIDE
FORMAT>ROW HEIGHT
FORMAT>AUTO FIT ROW HEIGHT
COPY>PASTE SPECIAL>VALUES ONLY
(and all other PASTE options)- 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
microsoft-excel-2010
edited Mar 18 '16 at 13:39
Prasanna
3,07222138
3,07222138
asked Mar 18 '16 at 13:21
Tim Van Wart
11
11
add a comment |
add a comment |
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.
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
add a comment |
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.
That was one of the first things I tried, no dice. Thanks, though.
– Tim Van Wart
Mar 22 '16 at 13:51
add a comment |
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!
add a comment |
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.
New contributor
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
That was one of the first things I tried, no dice. Thanks, though.
– Tim Van Wart
Mar 22 '16 at 13:51
add a comment |
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.
That was one of the first things I tried, no dice. Thanks, though.
– Tim Van Wart
Mar 22 '16 at 13:51
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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!
add a comment |
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!
add a comment |
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!
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!
answered Apr 24 at 14:32
Jesten M
1
1
add a comment |
add a comment |
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.
New contributor
add a comment |
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.
New contributor
add a comment |
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.
New contributor
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.
New contributor
New contributor
answered Nov 16 at 1:40
FraseFrase
1
1
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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