View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Otto Moehrbach Otto Moehrbach is offline
external usenet poster
 
Posts: 1,090
Default Change event occurs

Excel & Windows XP
The following simple Change event macro fires if the active cell is blank
and I hit the Delete key. Since no change to the contents of the cell
occurred, why does it fire?
Thanks for your help. Otto
Private Sub Worksheet_Change(ByVal Target As Range)
MsgBox "It changed."
End Sub