Dear group,

i try to catch the user's action via worksheet change event.  My worksheet
has a value at cell D6 that i would like to remain constant and if that
value is change by user the workbook is closed.

My problem now is, even if this values are unchanged but if any other range
of cell is deleted, the macro is triggered which i really don't understand
why?  The macro is triggered when i delete a content of a cell range.   but
if a single cell is deleted nothing happens.

any suggestion why is this so?  here is my code.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error Resume Next
If Target = [$D$3] Then
        If Target.Value <> "BRIDGESTONE COMPANY INC." Then
            MsgBox  " FILE WILL BE CLOSED!!", vbOKOnly + vbExclamation
            MsgBox "Please contact EDP "
            ThisWorkbook.Close savechanges:=False
        End If
    End If

End Sub

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 6,800 subscribers worldwide and receive many nice notes about the 
learning and support from the group.Let friends and co-workers know they can 
subscribe to group at http://groups.google.com/group/excel-macros/subscribe

Reply via email to