BigDelGooner
Board Regular
- Joined
- Aug 17, 2009
- Messages
- 197
Hi all
The code below works fine when I change a value in cells B6,B7 or B8 but when I delete a value in these cells using the delete key the procedure is not activated. I presume its that the delete key command is effectively classed as a ClearContents and not an actual change, any ideas on a workaround for this though?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$6" Then
FrontPage_Summary
End If
If Target.Address = "$B$7" Then
FrontPage_Summary
End If
If Target.Address = "$B$8" Then
FrontPage_Summary
End If
End Sub
The code below works fine when I change a value in cells B6,B7 or B8 but when I delete a value in these cells using the delete key the procedure is not activated. I presume its that the delete key command is effectively classed as a ClearContents and not an actual change, any ideas on a workaround for this though?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$6" Then
FrontPage_Summary
End If
If Target.Address = "$B$7" Then
FrontPage_Summary
End If
If Target.Address = "$B$8" Then
FrontPage_Summary
End If
End Sub