+ Reply to Thread
Results 1 to 5 of 5

create a pop-up alert when a condition is reached in excel

  1. #1
    Crazy Horse
    Guest

    create a pop-up alert when a condition is reached in excel

    How does one create a pop-up or e-mail alert when a condition is reached in
    excel.

  2. #2
    Paul Mathews
    Guest

    RE: create a pop-up alert when a condition is reached in excel

    You might try something like this:

    If PutConditionHere Then MsgBox "Condition has been reached", vbOKOnly,"Alert"

    "Crazy Horse" wrote:

    > How does one create a pop-up or e-mail alert when a condition is reached in
    > excel.


  3. #3
    Paul Mathews
    Guest

    RE: create a pop-up alert when a condition is reached in excel

    I should elaborate by saying that you'll need to put this line of code in the
    Worksheet_Change sub of the sheet that holds the condition. For example, if
    you wanted a message to appear after cell A1 on Sheet1 reaches the value 100,
    you'd
    want something like this for the Sheet1 Excel Object:

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Range("A1").Value >= 100 Then _
    MsgBox "A1 has reached limit", vbOKOnly, "Alert"
    End Sub

    "Crazy Horse" wrote:

    > How does one create a pop-up or e-mail alert when a condition is reached in
    > excel.


  4. #4
    Crazy Horse
    Guest

    RE: create a pop-up alert when a condition is reached in excel

    Paul, Thank you for your response.

    I can see how that will work if you have fixed cells, but I am looking for
    something more flexible. Let me elaborate a bit. I have developed an shared
    excel spreadsheet that has date deadlines associated with specific individual
    projects. I have set up conditional alerts that turn the cell red when the
    deadlines are reached. What I am looking for is a way to either produce an
    e-mail alert notifying specific individuals when the deadlines have been
    reached along with the project name and description of the alert, or as an
    alternative build a report listing all the conditional deadlines have been
    reached, along with the name of the project. How would one go about in
    doing this? Thanks again.


    "Paul Mathews" wrote:

    > I should elaborate by saying that you'll need to put this line of code in the
    > Worksheet_Change sub of the sheet that holds the condition. For example, if
    > you wanted a message to appear after cell A1 on Sheet1 reaches the value 100,
    > you'd
    > want something like this for the Sheet1 Excel Object:
    >
    > Private Sub Worksheet_Change(ByVal Target As Range)
    > If Range("A1").Value >= 100 Then _
    > MsgBox "A1 has reached limit", vbOKOnly, "Alert"
    > End Sub
    >
    > "Crazy Horse" wrote:
    >
    > > How does one create a pop-up or e-mail alert when a condition is reached in
    > > excel.


  5. #5
    Registered User
    Join Date
    05-19-2009
    Location
    Chandigarh
    MS-Off Ver
    Excel 2003, 2007
    Posts
    1

    create a pop-up alert when a condition is reached in excel

    Hi can someone help me how to write a code for this.
    I have A to Z columns and A to Z rows multiple worksheets in an excel. In A column I have values from 0 to 100. If the value of the 2 or more consecutive rows have >100 I need to get pop up alert message. This excel automatically gets the values in the rows based on some usages.

+ 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