Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
JPica,
I should have also said that if the cell that you want to monitor contains a formula, you will need to have a second cell that contains just the current value of the cell, and then use the calculate event to compare the cell with the formula with the value cell, as below. HTH, Bernie MS Excel MVP Private Sub Worksheet_Calculate() If Range("A1").Value < Range("A2").Value Then MsgBox "Cell A1 changed!" Application.EnableEvents = False Range("A2").Value = Range("A1").Value Application.EnableEvents = True End If "JPica" wrote in message ... Is it possible to have VB continuously check a cell to see if the value has changed? JPica |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
checking for a particular string in a cell | Excel Worksheet Functions | |||
Spell Checking with checking cell notes | Excel Discussion (Misc queries) | |||
Checking cell for Number | New Users to Excel | |||
cell checking | New Users to Excel | |||
Checking a cell | Excel Programming |