Horizontal Scroll Bars

MasterChief

Board Regular
Joined
Feb 14, 2006
Messages
172
I have a work book with a few sheets, The first one (Sheet 1) is just a text box giving instructions on how to use the workbook. So using options/tools I unchecked all the options refering to the scroll bars, how ever it applys this to the rest of the sheets. Is it possible to only change the options on one work sheet only and not the whole workbook ?

Hope this is clear.

Many Thanks
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi Masterchief

You could include worksheet event code on Sheet1 along the lines of:

Code:
Private Sub Worksheet_Activate()
Application.DisplayScrollBars = False
End Sub

Private Sub Worksheet_Deactivate()
Application.DisplayScrollBars = True
End Sub

To activate/deactivate on the relevant sheet.

Best regards

Richard
 
Upvote 0

Forum statistics

Threads
1,214,388
Messages
6,119,229
Members
448,879
Latest member
VanGirl

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