+ Reply to Thread
Results 1 to 6 of 6

MessageBox Warning

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    03-05-2009
    Location
    usa
    MS-Off Ver
    Excel 2016 32Bit
    Posts
    1,173

    MessageBox Warning

    How would I write a messagebox popup if cell H11 is empty in my workbook.
    Thanks Z
    Last edited by zplugger; 07-10-2011 at 08:11 AM.

  2. #2
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,887

    Re: MessageBox Warning

    That depends on when you want the message box to appear.

    When the user tries to save the workbook? After changing the value in H11? After clicking a button?

    On a basic level you could use Data Validation, but that would only be good if the user tried to enter a value into H11 (or remove a value from the cell). As part of a macro (save, button, etc.) it would be something like:
    If Range("H11").Value = "" Then MsgBox "You must enter a value in cell H11!"

  3. #3
    Forum Contributor
    Join Date
    03-05-2009
    Location
    usa
    MS-Off Ver
    Excel 2016 32Bit
    Posts
    1,173

    Re: MessageBox Warning

    Thank You, this will work

  4. #4
    Forum Contributor
    Join Date
    03-05-2009
    Location
    usa
    MS-Off Ver
    Excel 2016 32Bit
    Posts
    1,173

    Re: MessageBox Warning

    I was wrong, still not working right. My workbook has 4 different sheets,if it open on sheet 3 the message will not work until I change sheets. I tried workbookchange but with a command button to clear the form it pop up the message. Not sure how to make it work when it open to the starting sheet. Here is the code I use.
    Private Sub Worksheet_Activate()
    If Range("H11").Text = "" Then
        MsgBox "You need to Insert Invoice Number Rick "
        Cancel = True
        
        
        
        Exit Sub
    End If
    End Sub

  5. #5
    Forum Expert Paul's Avatar
    Join Date
    02-05-2007
    Location
    Wisconsin
    MS-Off Ver
    2016/365
    Posts
    6,887

    Re: MessageBox Warning

    So back to my original question, when do you want it to pop up?

    When the workbook opens, or whenever Sheet3 becomes the active sheet?

  6. #6
    Forum Contributor
    Join Date
    03-05-2009
    Location
    usa
    MS-Off Ver
    Excel 2016 32Bit
    Posts
    1,173

    Re: MessageBox Warning

    Thanks Paul, I set my workbook to open on a sheet that does not use the warning. Thanks again for getting me on the right path.

+ 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