How to disable or remove Scroll bar located at right side of Excel?

You'll need to set the scrollarea then. Note that you need to do this every time the workbook opens.
 
Upvote 0

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Then try like this

Code:
Private Sub Worksheet_Activate()
ActiveWindow.DisplayVerticalScrollBar = False
Me.ScrollArea = "A1:Z20"
End Sub

I just notice from this code, now I cant scroll it by the mouse (sheet1), the sheet2 is yes but the scrollbar is missing, can we make the scrollbar visible for sheet2?
 
Upvote 0
You need this in Sheet1's code module

Code:
Private Sub Worksheet_Deactivate()
ActiveWindow.DisplayVerticalScrollBar = True
End Sub
 
Upvote 0
Try

Code:
Private Sub Worksheet_Activate()
ActiveWindow.DisplayVerticalScrollBar = False
ActiveWindow.DisplayHeadings = False
Me.ScrollArea = "A1:Z20"
End Sub

Private Sub Worksheet_Deactivate()
ActiveWindow.DisplayVerticalScrollBar = True
ActiveWindow.DisplayHeadings = True
End Sub
 
Upvote 0
Try

Code:
Private Sub Worksheet_Activate()
With ActiveWindow
    .DisplayVerticalScrollBar = False
    .DisplayHeadings = False
    .DisplayWorkbookTabs = False
End With
Me.ScrollArea = "A1:Z20"
End Sub

Private Sub Worksheet_Deactivate()
With ActiveWindow
    .DisplayVerticalScrollBar = True
    .DisplayHeadings = True
    .DisplayWorkbookTabs = True
End With
End Sub

To move from Sheet1 you will need to use CTRL + Pg Down
 
Upvote 0

Forum statistics

Threads
1,216,041
Messages
6,128,467
Members
449,455
Latest member
jesski

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