+ Reply to Thread
Results 1 to 7 of 7

How to update a 2nd Worksheet from another Worksheet

Hybrid View

  1. #1
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Spellbound,

    Replace the macro on the Results worksheet with the code below, and remove the macro from the Input worksheet.
    Private Sub Worksheet_Change(ByVal Target As Range)
      If Target.Address <> "$B$2" Then Exit Sub
      ActiveSheet.Calculate
      Worksheets("Input").Range("$O$2") = Target
      Worksheets("Input").Calculate
    End Sub
    Sincerely,
    Leith Ross

  2. #2
    Forum Contributor
    Join Date
    03-22-2006
    Location
    UK
    MS-Off Ver
    Office 2013
    Posts
    275
    Hi Leith

    That works fine, it will speed things up especially when I incorporate it in the main workbook project, which is much larger.

    Many thanks ...spellbound

+ 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