Results 1 to 5 of 5

Vba and Fomula conflict

Threaded View

  1. #1
    Forum Contributor
    Join Date
    05-24-2012
    Location
    Racine, wisconsin
    MS-Off Ver
    Excel 2010
    Posts
    225

    Vba and Fomula conflict

    Hi and thanks for taking the time to read my Post

    You guys have been a Great Help so far

    ok i have this code on sheet4 "HIDE" works great, but when i put a fomula =PLAYERS!B19 in D2 and =PLAYERS!C19 in E2 on
    sheet4 "HIDE" the VBA code doesn't work, is there a way to make them both work?

    Private Sub worksheet_Change(ByVal Target As Range)
    
        If Target.Count = 1 And Not Intersect(Target, Range("D2:E21")) Is Nothing Then
        Application.EnableEvents = False
        Target.Offset(0, -2).Value = Target.Value + Target.Offset(0, -2).Value
        End If
        Application.EnableEvents = True
        
    End Sub
    Thanks
    Keith
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1