+ Reply to Thread
Results 1 to 10 of 10

How to Pop up message in Excel?

Hybrid View

  1. #1
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: How to Pop up message in Excel?

    Why not just protect the sheet with a password. Once done, none of the cells can be edited at all, except for cells you specifically remove protection from prior to protecting the whole sheet.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  2. #2
    Registered User
    Join Date
    01-28-2009
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: How to Pop up message in Excel?

    Thanks for the response, JBeaucaire!

    Actually, I need to do this for perticular cells.
    Moreover , this is just a case, so as to get the programming way to understand.
    There are other things need to be done for some other cell like -
    To pop up a window saying "Please make same changes in so-n-so file as well!" after the cell value is changed.

    I hope I'm able to state what exactly I want.
    If it's not clear , plz let me know.

    Thanks.

    - Shil

  3. #3
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523

    Re: How to Pop up message in Excel?

    Quote Originally Posted by shil View Post
    Thanks for the response, JBeaucaire!

    Actually, I need to do this for perticular cells.
    Moreover , this is just a case, so as to get the programming way to understand.
    There are other things need to be done for some other cell like -
    To pop up a window saying "Please make same changes in so-n-so file as well!" after the cell value is changed.

    I hope I'm able to state what exactly I want.
    If it's not clear , plz let me know.

    Thanks.

    - Shil
    You originally said
    I would like a pop-up message to appear on screen when a user changes any cell in any coloumn or row.

  4. #4
    Registered User
    Join Date
    01-28-2009
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: How to Pop up message in Excel?

    Agreed n sorry for that.
    I just considered only one scenario.

    Plz refer to the redefined issue.
    Thanks.

  5. #5
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523

    Re: How to Pop up message in Excel?

    Quote Originally Posted by shil View Post
    Agreed n sorry for that.
    I just considered only one scenario.

    Plz refer to the redefined issue.
    Thanks.
    What are the particular cells?

  6. #6
    Registered User
    Join Date
    01-28-2009
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: How to Pop up message in Excel?

    These are the rows having 1st column (column header) as 'Group1' or 'Group2' and first row (row header) as 'Expenses' or 'Savings'.

  7. #7
    Registered User
    Join Date
    01-28-2009
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: How to Pop up message in Excel?

    Oh.. just came across some stuff on net.
    Yes, i can specify the cells like B12, C12
    Is it possible to pop up window like 'Please make same changes in so-n-so file as well!' once the B12, C12 cells are changed?

    Thanks in adavnace for the help.

  8. #8
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,523

    Re: How to Pop up message in Excel?

    JBeaucaire is the best answer, here is a code that will do what you want
    Private Sub Worksheet_Change(ByVal Target As Range)
        MsgBox "Please do not Change this"
        Target.Select
    End Sub

+ 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