Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Can I change default check boxes on protect sheet?

When I choose the menu under Tools for Protectsheet, I would prefer that the
check box for "Select Locked Cells" always be blank. Is there anyway to set
this as my default?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Can I change default check boxes on protect sheet?

It seems to be a workbook option and is saved with that workbook and not
respected by other workbooks, new or existing.

For all new workbooks I would suggest creating a new default Template to replace
the Excel default workbook.

Before saving as a Template, set ToolsProtectionProtect Worksheet options as
you like.

Save as an excel workbook.xls

Unprotect the worksheet then save as a a Template named BOOK.xlt

FileSave As Type: scroll down to Excel Template(*.XLT) and select. Name your
workbook "BOOK"(no quotes). Excel will add the .XLT to save as BOOK.XLT.

Store this workbook in the XLSTART folder usually located at........

C:\Documents and Settings\username\Application Data\Microsoft\Excel\XLSTART

This will be the default workbook for FileNew or the Toolbar button FileNew or
CTRL + n

If you want the Excel default workbook go to FileNew...Blank Workbook.

NOTE: Existing workbooks are not affected by these settings.

You can also open a new workbook and delete all but one sheet. Customize as
you wish then save this as SHEET.XLT in XLSTART folder also. It now becomes
the default InsertSheet.

More can be found on this in Help under "templates"(no quotes).

Or dispense with all the above and protect the sheet using a macro.

Sub SHEETPROTECT()
With ActiveSheet
.Protect Password:="justme", DrawingObjects:=True, _
Contents:=True, Scenarios:=True
.EnableSelection = xlUnlockedCells
End With
End Sub

Sub SHEETUNPROTECT()
ActiveSheet.Unprotect Password:="justme"
End Sub


Gord Dibben Excel MVP





On Mon, 4 Feb 2008 08:35:01 -0800, DWAyers
wrote:

When I choose the menu under Tools for Protectsheet, I would prefer that the
check box for "Select Locked Cells" always be blank. Is there anyway to set
this as my default?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I change how check boxes look when printed - lines darker P Moser Excel Discussion (Misc queries) 0 October 27th 06 02:52 PM
Enable check box in protected sheet + group check boxes Dexxterr Excel Discussion (Misc queries) 4 August 2nd 06 12:00 PM
How can I protect a worksheet but still use ActiveX check-boxes? John Ewald Excel Discussion (Misc queries) 0 February 22nd 06 04:30 PM
Mutiple Check boxes flashing on sheet danc Excel Discussion (Misc queries) 5 February 8th 06 11:07 PM
How to align check boxes on an Excel sheet? CC Excel Worksheet Functions 2 February 16th 05 03:27 PM


All times are GMT +1. The time now is 03:33 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"