+ Reply to Thread
Results 1 to 2 of 2

VBA Message box after certain drop down selection made

Hybrid View

cralph78 VBA Message box after certain... 10-29-2014, 09:45 AM
stnkynts Re: VBA Message box after... 10-29-2014, 10:45 AM
  1. #1
    Registered User
    Join Date
    01-22-2014
    Location
    Colchester, England
    MS-Off Ver
    Excel 2010
    Posts
    28

    VBA Message box after certain drop down selection made

    Hi,

    I've got a protected sheet with various unprotected cells some with drop down boxes for users to use.

    If the user selects "yes" in D9 (which is a merged cell of D9:J9 if that makes a difference), then I want a message box to appear advising them to complete cells D59, D61 and D63.

    I also want to be able to stop the sheet being printed it there is a "Yes" in D9 and cells D59, D61 & D63 are blank.

    And finally, I want to be able to stop the sheet being printed if all the drop down boxes aren't chosen - there are multiple ones across the spreadsheet.

    Thanks.

  2. #2
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: VBA Message box after certain drop down selection made

    This goes in code section for the worksheet which you are referencing:

    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Target.Address = Range("D9").Address Then
        If Target = "Yes" Then
            MsgBox ("Don't forget to enter data into D59, D61, and D63")
        End If
    End If
    
    End Sub
    This goes under ThisWorkbook

    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    Dim ws As Worksheet:    Set ws = Sheets("Sheet1") 'you may need to change this
    
    If ws.Range("D9").Value = "Yes" Then
        If Application.WorksheetFunction.CountA(ws.Range("D59"), ws.Range("D61"), ws.Range("D63")) < 3 Then
            Cancel = True
        End If
    End If
    
    'not chosen
    If ws.Range("D9").Value = "" Then
        Cancel = True
    End If
    
    End Sub

    And finally, I want to be able to stop the sheet being printed if all the drop down boxes aren't chosen - there are multiple ones across the spreadsheet.
    I am not going to guess as to the cell location for these drop down boxes. Expand the code I supplied to answer this question on your own.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Insert static date in cell when selection made from drop down
    By Bikeman in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 01-10-2014, 02:54 PM
  2. Replies: 1
    Last Post: 03-27-2013, 07:04 AM
  3. Trying to message box and then paste file names to cells from a selection the user made
    By milton friedman in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-06-2013, 09:03 AM
  4. Macro to confirm that a drop down selection has been made
    By prontrad in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-31-2010, 12:57 PM
  5. Detect when autofilter drop-down selection made
    By wotadude in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-07-2009, 04:05 PM

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