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

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.

Richard Schollar

MrExcel MVP
Joined
Apr 19, 2005
Messages
23,707
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,195,953
Messages
6,012,518
Members
441,704
Latest member
Perez1

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
Top