Thread: Checking a cell
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Checking a cell

Hi

Read Chip Pearson's site about Events
http://www.cpearson.com/excel/events.htm


This example is to test A1

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Range("A1"), Target) Is Nothing Then
MsgBox "You changed cell A1"
End If
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl


"JPica" wrote in message ...
Is it possible to have VB continuously check a cell to
see if the value has changed?

JPica