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

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
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,215,545
Messages
6,125,448
Members
449,227
Latest member
Gina V

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