+ Reply to Thread
Results 1 to 4 of 4

error message

  1. #1
    Rich
    Guest

    error 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

  2. #2
    Norman Jones
    Guest

    Re: error message

    Hi Rich,

    I do not believe that the default message can be changed.


    ---
    Regards,
    Norman



    "Rich" <Rich@discussions.microsoft.com> wrote in message
    news:6D540817-634D-4459-AF72-30557533EEC3@microsoft.com...
    > 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. #3
    Rich
    Guest

    Re: error message

    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" <Rich@discussions.microsoft.com> wrote in message
    > news:6D540817-634D-4459-AF72-30557533EEC3@microsoft.com...
    > > 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. #4
    Dave Peterson
    Guest

    Re: error message

    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 to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1