Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I remove 10,000+ empty rows below my table?

My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them? Thanks.
  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: How do I remove 10,000+ empty rows below my table?

It sounds like you may have accidentally inserted extra rows below your table. Here's how you can remove them:
  1. Click on the row number below your table where you want to start deleting rows.
  2. Hold down the Shift key and click on the last row number in the scroll bar (the one that goes beyond 10,000 rows).
  3. All the rows between the two selected rows should now be highlighted.
  4. Right-click on one of the highlighted row numbers and select "Delete" from the drop-down menu.
  5. A dialog box will appear asking if you want to shift cells up or shift cells left. Select "Shift cells up" and click "OK".
  6. All the empty rows should now be removed and your table should be back to its original size.

If you're still experiencing issues with the scroll bar, try adjusting the zoom level of your worksheet. Sometimes, if the zoom level is too high, it can make it look like there are more rows than there actually are. You can adjust the zoom level by clicking on the percentage number in the bottom right corner of the Excel window and selecting a lower percentage.
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 57
Default How do I remove 10,000+ empty rows below my table?

ASAP has its ubiquitous (and free) mega utility and among them is a delete
all unused rows command. There are so many useful utilities on this add-in,
I can't imagine not having it available for quick requirements like the one
you have. Google it up and take a look. Brad



"Frustrated Excel User" <Frustrated Excel
wrote in message ...
My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them?
Thanks.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default How do I remove 10,000+ empty rows below my table?

Excel often gets confused about what the actual used range of sheet is. It
often includes rows that are not in use. You can reset this by using code
like

Sub ResetUsedRange()
Dim LastCell As Range
Set LastCell = Cells.Find(what:="*", LookIn:=xlFormulas,
LookAt:=xlWhole, _
SearchOrder:=xlByColumns, SearchDirection:=xlPrevious,
MatchCase:=False)
Range(LastCell(2, 1), Cells(Rows.Count, Columns.Count)).EntireRow.Delete
End Sub

This first finds the last used cell using Find with a What parameter of '*',
meaning find anything, starting at the last cell ("IV65536" in XL before
2007) move toward the top of the sheet. It then delete all the rows starting
one row below LastCell all the way down to Rows.Count = 64K in XL before
2007.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)

"Frustrated Excel User" <Frustrated Excel
wrote in message ...
My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them?
Thanks.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,118
Default How do I remove 10,000+ empty rows below my table?

Select the rows
Then...trom the Excel main menu:
<edit<delete<entire row

Then save the workbook.
(In some versions of Excel you must Save/Close/Re-open the workbook

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"Frustrated Excel User" wrote:

My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them? Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How do I remove 10,000+ empty rows below my table?

I did try this but couldn't really select the bottom row as it seemed to be
endless, I tried a block at a time but it seemed to be hopeless. Thanks
anyway.
Sheila

"Ron Coderre" wrote:

Select the rows
Then...trom the Excel main menu:
<edit<delete<entire row

Then save the workbook.
(In some versions of Excel you must Save/Close/Re-open the workbook

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"Frustrated Excel User" wrote:

My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them? Thanks.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How do I remove 10,000+ empty rows below my table?

This looks like it could do the trick. Of course now I've gone back into
excel the problem has gone away, it's been with me for weeks, there you go
that's Microsoft for you... hopefully next time it happens the ASAP software
will come into play. Thanks very much for that. Sheila.


"Brad" wrote:

ASAP has its ubiquitous (and free) mega utility and among them is a delete
all unused rows command. There are so many useful utilities on this add-in,
I can't imagine not having it available for quick requirements like the one
you have. Google it up and take a look. Brad



"Frustrated Excel User" <Frustrated Excel
wrote in message ...
My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them?
Thanks.




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How do I remove 10,000+ empty rows below my table?

This looks a little complicated for a simple person like me so I have
downloaded the ASAP software suggested by another user and I have solved the
problem; but I have printed out your code just in case for future problems.
Thanks. Sheila

"Chip Pearson" wrote:

Excel often gets confused about what the actual used range of sheet is. It
often includes rows that are not in use. You can reset this by using code
like

Sub ResetUsedRange()
Dim LastCell As Range
Set LastCell = Cells.Find(what:="*", LookIn:=xlFormulas,
LookAt:=xlWhole, _
SearchOrder:=xlByColumns, SearchDirection:=xlPrevious,
MatchCase:=False)
Range(LastCell(2, 1), Cells(Rows.Count, Columns.Count)).EntireRow.Delete
End Sub

This first finds the last used cell using Find with a What parameter of '*',
meaning find anything, starting at the last cell ("IV65536" in XL before
2007) move toward the top of the sheet. It then delete all the rows starting
one row below LastCell all the way down to Rows.Count = 64K in XL before
2007.

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)

"Frustrated Excel User" <Frustrated Excel
wrote in message ...
My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them?
Thanks.




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 903
Default How do I remove 10,000+ empty rows below my table?

Hi Shelia,
You really want to use a macro (or an addin) to do this quickly,
but as far as trying to move the cursor down endless rows or
across a lot of columns you can use the name box at the far
left of the formula bar.
15000:65536 will select the rows 15000 through 65536
J:IV will select the columns J through IV

You will run across a lot of suggestions to use a provide macro
solution in these newsgroups. The programming newsgroup
is where question specific to macros (and user defined functions)
are asked and answered. For instance Chip provided a macro, if
you want to try that macro or any other macro you could install it by starting at
http://www.mvps.org/dmcritchie/excel....htm#havemacro

---
HTH,
David McRitchie, Microsoft MVP - Excel
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"Frustrated Excel User" wrote in message
...
I did try this but couldn't really select the bottom row as it seemed to be
endless, I tried a block at a time but it seemed to be hopeless. Thanks
anyway.
Sheila

"Ron Coderre" wrote:

Select the rows
Then...trom the Excel main menu:
<edit<delete<entire row

Then save the workbook.
(In some versions of Excel you must Save/Close/Re-open the workbook

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"Frustrated Excel User" wrote:

My table has 1000 rows but the right hand scroll bar keeps on going down
beyond 10,000 rows, can anyone tell me why or how to get rid of them? Thanks.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I remove empty Rows Rodders Excel Discussion (Misc queries) 2 January 12th 07 12:04 PM
How do I sort with empty rows between none empty rows? Excel Challenged Excel Worksheet Functions 1 August 17th 06 03:59 PM
Excel stack column: how to remove empty labels? [email protected] Charts and Charting in Excel 2 July 13th 06 06:04 PM
Pivot Tables: How do I show ALL field rows, including empty rows?? [email protected] Excel Worksheet Functions 2 April 8th 05 06:21 PM
Remove empty rows in excel? Clbmgr Excel Discussion (Misc queries) 6 December 2nd 04 02:02 AM


All times are GMT +1. The time now is 02:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"