Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Excel has a default message that appears when someone tries to change a protected sheet. Can this message be edited to something more helpful. I know that I can do this using Data/Validation but this doesn't work on a Protected Sheet with all cells locked -- tlosgyl3 ------------------------------------------------------------------------ tlosgyl3's Profile: http://www.excelforum.com/member.php...o&userid=28074 View this thread: http://www.excelforum.com/showthread...hreadid=491017 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can't change the message, but you can stop them from selecting locked cells
on a protected sheet. Option Explicit Sub auto_open() Dim wks As Worksheet Set wks = Worksheets("sheet1") With wks .Protect password:="hi" .EnableSelection = xlUnlockedCells End With End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm tlosgyl3 wrote: Excel has a default message that appears when someone tries to change a protected sheet. Can this message be edited to something more helpful. I know that I can do this using Data/Validation but this doesn't work on a Protected Sheet with all cells locked -- tlosgyl3 ------------------------------------------------------------------------ tlosgyl3's Profile: http://www.excelforum.com/member.php...o&userid=28074 View this thread: http://www.excelforum.com/showthread...hreadid=491017 -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Many thanks I'll give it a go. New to macros too so thanks for the link. GD -- tlosgyl3 ------------------------------------------------------------------------ tlosgyl3's Profile: http://www.excelforum.com/member.php...o&userid=28074 View this thread: http://www.excelforum.com/showthread...hreadid=491017 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Still can select locked cells in protected sheet | New Users to Excel | |||
Allow unprotected cells to spell check after sheet is protected | Excel Worksheet Functions | |||
TEX TO COLUMNS PROTECTED SHEET | Excel Discussion (Misc queries) | |||
Does excel recognise names rather than cells? | Excel Worksheet Functions | |||
Macro Errs when sheet is protected | Excel Worksheet Functions |