Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
is their a way to create your own error message
have a work book with protected cells , can i get the default message to read something like you arre not authorised to alter this data |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Rich,
I do not believe that the default message can be changed. --- Regards, Norman "Rich" wrote in message ... is their a way to create your own error message have a work book with protected cells , can i get the default message to read something like you arre not authorised to alter this data |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
didnt think so ,, but can always live in hope
thanks for your responce "Norman Jones" wrote: Hi Rich, I do not believe that the default message can be changed. --- Regards, Norman "Rich" wrote in message ... is their a way to create your own error message have a work book with protected cells , can i get the default message to read something like you arre not authorised to alter this data |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 Rich wrote: is their a way to create your own error message have a work book with protected cells , can i get the default message to read something like you arre not authorised to alter this data -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
error message: compile error, argument not optional | Excel Programming | |||
VBA Error Message "Compile Error...." | Excel Discussion (Misc queries) | |||
Excel XP error message Run Time Error 91 | Excel Programming | |||
changing the message in an error message | Excel Worksheet Functions | |||
How do I get rid of "Compile error in hidden module" error message | Excel Discussion (Misc queries) |