Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I change how check boxes look when printed - lines darker | Excel Discussion (Misc queries) | |||
Enable check box in protected sheet + group check boxes | Excel Discussion (Misc queries) | |||
How can I protect a worksheet but still use ActiveX check-boxes? | Excel Discussion (Misc queries) | |||
Mutiple Check boxes flashing on sheet | Excel Discussion (Misc queries) | |||
How to align check boxes on an Excel sheet? | Excel Worksheet Functions |