View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mark Mark is offline
external usenet poster
 
Posts: 102
Default Auto Update in excel

Try This, just change the address between the quotes to suit your
needs.

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo DoNothing
If Target.Address = "$A$1" Then
MsgBox "This works"
End If
Exit Sub

DoNothing:

End Sub


This will avoid running into a continuos loop