How to reduce Scroll Bar that has enlarged

donggri84

New Member
Joined
Jul 31, 2013
Messages
18
The spreadsheet contains 3000 lines and the scroll bar has enlarged to as long as the whole spreadsheet.
When trying to scroll down it takes 0.001 second to scroll way down to bottom line.
It's too fast.
Tried deleting empty cells by Control "-". The spreadsheet either freezes/crashes/ or just get worse and the time it takes to scroll does not change.
Anything else I can do?

Kind regards,
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Hello there,

I'm using Excel 2007 :)
Just not sure how to stop autodeletion of 0's in the front of the digits after macro has run. :/

Thank you!!
Kind regards,
 
Upvote 0
Ooooohhh!!! Sorry I got confused with my other thread.
Please disregard comment before regarding 0's and macros.
I only have the scroll bar problem.
Do I still use the XSFormatCleaner?
 
Upvote 0
Hmmm It does not seem to be working.
I've saved the file and re-opened and nothing seemed to have changed.
There were some hidden rows 2990-1048570. I tried unhiding rows but everything just freezes and crashes.
Seems like there's no way it can be fixed?

Thank you
 
Upvote 0
The hidden rows are the cause of the scroll bar size.
Try running the following macro:
Code:
Sub Unhide()
Dim ws As Worksheet
Dim rng As Range
'
Application.ScreenUpdating = False
Set ws = ActiveSheet
Set rng = ws.Range("A2990:A1048570")
rng.Rows.Hidden = False
Set rng = Nothing
Set ws = Nothing
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top