+ Reply to Thread
Results 1 to 5 of 5

Worksheet Events

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-18-2009
    Location
    Chih, Mexico
    MS-Off Ver
    Excel 2010
    Posts
    102

    Worksheet Events

    Hi,

    need help, multiple Worsheet_Change events it works just once time then does nothing,
    this is the code i have now...

    
    Private Sub Worksheet_Change(ByVal Target As Range)
        Application.ScreenUpdating = False
        Application.EnableEvents = False
        If Not Intersect(Target, Me.Range("V1")) Is Nothing Then
        Call Macro1
        End If
        If Not Intersect(Target, Me.Range("J2:J101")) Is Nothing Then
        Call Macro2
        Application.EnableEvents = True
        End If
        Application.ScreenUpdating = True
    
    End Sub

  2. #2
    Forum Expert
    Join Date
    05-01-2014
    Location
    California, US
    MS-Off Ver
    Excel 2010
    Posts
    1,795

    Re: Worksheet Events

    Quote Originally Posted by werko View Post
    Hi,

    need help, multiple Worsheet_Change events it works just once time then does nothing,
    this is the code i have now...
    Private Sub Worksheet_Change(ByVal Target As Range)
        Application.ScreenUpdating = False
        Application.EnableEvents = False
        If Not Intersect(Target, Me.Range("V1")) Is Nothing Then
        Call Macro1
        End If
        If Not Intersect(Target, Me.Range("J2:J101")) Is Nothing Then
        Call Macro2
        Application.EnableEvents = True
        End If
        Application.ScreenUpdating = True
    End Sub
    The minimum change is:

    Private Sub Worksheet_Change(ByVal Target As Range)
        Application.ScreenUpdating = False
        Application.EnableEvents = False
        If Not Intersect(Target, Me.Range("V1")) Is Nothing Then
           Call Macro1
        End If
        If Not Intersect(Target, Me.Range("J2:J101")) Is Nothing Then
            Call Macro2
        End If
        Application.EnableEvents = True
        Application.ScreenUpdating = True
    End Sub

  3. #3
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Worksheet Events

    
    Private Sub Worksheet_Change(ByVal Target As Range)
        Application.ScreenUpdating = False
        Application.EnableEvents = False
        If Not Intersect(Target, Me.Range("V1")) Is Nothing Then
            Call Macro1
        End If
        If Not Intersect(Target, Me.Range("J2:J101")) Is Nothing Then
            Call Macro2
        End If
        Application.EnableEvents = True
        Application.ScreenUpdating = True
    
    End Sub


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  4. #4
    Forum Contributor
    Join Date
    08-18-2009
    Location
    Chih, Mexico
    MS-Off Ver
    Excel 2010
    Posts
    102

    Re: Worksheet Events

    Thanks,

    joeu2004, TMS

    I was close now it's working...

  5. #5
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,242

    Re: Worksheet Events

    You're welcome. Thanks for the rep.



    If you are satisfied with the solution(s) provided, please mark your thread as Solved.


    New quick method:
    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.

    Or you can use this way:

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save


    You may also want to consider thanking those people who helped you by clicking on the little star at the bottom left of their reply to your question.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Worksheet Change and Worksheet Activate Events Reprotecting Automatically
    By excelnewb02 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 09-21-2012, 08:44 PM
  2. MAcro to Copy Worksheet and Worksheet Events
    By max57 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-28-2009, 08:12 PM
  3. Worksheet Events
    By DCSwearingen in forum Excel General
    Replies: 2
    Last Post: 05-24-2006, 05:42 PM
  4. [SOLVED] worksheet events and a little more help
    By tinkerbellsmyhoe in forum Excel General
    Replies: 5
    Last Post: 04-27-2006, 10:50 AM
  5. [SOLVED] Workbook and Worksheet Events
    By Chaplain Doug in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-13-2005, 08:06 PM

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