+ Reply to Thread
Results 1 to 2 of 2

Change Event Track

  1. #1
    Rafael
    Guest

    Change Event Track

    Hi , does anybody know how to track a change of a linked cell value ?
    The event change recognizes manual changes, but not linked changes.
    This would be great.

    Thanks , Rafael

  2. #2
    Bernie Deitrick
    Guest

    Re: Change Event Track

    Rafael,

    You need a second cell to store a value to compare it to. So, for example,
    if cell A1 has a link to another cell, and cell A2 is available to store the
    comparative value, then this event code will work:

    Private Sub Worksheet_Calculate()
    If Range("A1").Value <> Range("A2").Value Then
    MsgBox "Cell A1 has changed"
    Application.EnableEvents = False
    Range("A2").Value = Range("A1").Value
    Application.EnableEvents = True
    End If
    End Sub

    HTH,
    Bernie
    MS Excel MVP

    "Rafael" <[email protected]> wrote in message
    news:[email protected]...
    > Hi , does anybody know how to track a change of a linked cell value ?
    > The event change recognizes manual changes, but not linked changes.
    > This would be great.
    >
    > Thanks , Rafael




+ 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