+ Reply to Thread
Results 1 to 4 of 4

Event change Macro needed

  1. #1
    Bob Tarburton
    Guest

    Event change Macro needed

    I need a simple macro to recalculate the worksheet (not the entire
    workbook) whenever any cell in the range B5:G5 is edited.

    I'm assuming it's a simple combination of Worksheet_Change and
    ActiveSheet.Calculate

    I've looked at Chip Pearson's event macros page, but can't seem to get it
    right.

    Thanks in advance for you help
    Bob



  2. #2
    Gary''s Student
    Guest

    RE: Event change Macro needed

    Sub Worksheet_Change(ByVal Target As Excel.Range)
    If Intersect(Range("B5:G5"), Target) Is Nothing Then Exit Sub
    Application.EnableEvents = False
    Application.CalculateFull
    Application.EnableEvents = True
    End Sub

    --
    Gary's Student


    "Bob Tarburton" wrote:

    > I need a simple macro to recalculate the worksheet (not the entire
    > workbook) whenever any cell in the range B5:G5 is edited.
    >
    > I'm assuming it's a simple combination of Worksheet_Change and
    > ActiveSheet.Calculate
    >
    > I've looked at Chip Pearson's event macros page, but can't seem to get it
    > right.
    >
    > Thanks in advance for you help
    > Bob
    >
    >
    >


  3. #3
    Tom Ogilvy
    Guest

    Re: Event change Macro needed

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Me.Range("B5:G5"),Target) is Nothing _
    Then Exit Sub
    me.Calculate
    End Sub

    --
    Regards,
    Tom Ogilvy


    "Bob Tarburton" <reply2bob@_removethis_intergate.com> wrote in message
    news:11tv6iqfal18a45@corp.supernews.com...
    > I need a simple macro to recalculate the worksheet (not the entire
    > workbook) whenever any cell in the range B5:G5 is edited.
    >
    > I'm assuming it's a simple combination of Worksheet_Change and
    > ActiveSheet.Calculate
    >
    > I've looked at Chip Pearson's event macros page, but can't seem to get it
    > right.
    >
    > Thanks in advance for you help
    > Bob
    >
    >




  4. #4
    Bob Tarburton
    Guest

    Re: Event change Macro needed

    Thanks Guys

    I just changed Calculate to ActiveSheet.Calculate and it gave me what I
    wanted.

    I almost had it in my previous tries but I placed it in the worksheet code
    module instead of the standard code module. Doh!

    "Bob Tarburton" <reply2bob@_removethis_intergate.com> wrote in message
    news:11tv6iqfal18a45@corp.supernews.com...
    >I need a simple macro to recalculate the worksheet (not the entire
    >workbook) whenever any cell in the range B5:G5 is edited.
    >
    > I'm assuming it's a simple combination of Worksheet_Change and
    > ActiveSheet.Calculate
    >
    > I've looked at Chip Pearson's event macros page, but can't seem to get it
    > right.
    >
    > Thanks in advance for you help
    > Bob
    >




+ Reply to Thread

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