+ Reply to Thread
Results 1 to 2 of 2

Message Box Pop-Up

  1. #1
    Alicia Rittenhouse
    Guest

    Message Box Pop-Up

    I would like to have a message box pop up when I save as to remind me to
    change the date on my report (It's a week schedule so I don't think there is
    a way to have it automatically update each date) I tried copying and pasting
    a code I found on here, but it doesn't work. Can anyone help me out.
    Thanks! Alicia Rittenhouse

  2. #2
    JulieD
    Guest

    Re: Message Box Pop-Up

    Hi Alicia

    something along the lines of
    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
    Boolean)
    If MsgBox("Have you changed the date?", vbYesNo, "Check") = vbNo Then
    Cancel = True
    Exit Sub
    End If
    End Sub

    - this needs to go in the ThisWorkbook module of your workbook - not in a
    normal code module - in the VBE window - you should see your workbook's name
    in bold on the left hand side of the screen (if not, choose view / project
    explorer) .. under the name you should see the sheets listed and then
    ThisWorkbook. Double click on ThisWorkbook and put the code in the right
    hand side of the screen.

    Cheers
    JulieD

    "Alicia Rittenhouse" <AliciaRittenhouse@discussions.microsoft.com> wrote in
    message news:50D9EAFB-542E-4241-9064-6229F9D190C4@microsoft.com...
    >I would like to have a message box pop up when I save as to remind me to
    > change the date on my report (It's a week schedule so I don't think there
    > is
    > a way to have it automatically update each date) I tried copying and
    > pasting
    > a code I found on here, but it doesn't work. Can anyone help me out.
    > Thanks! Alicia Rittenhouse




+ 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