+ Reply to Thread
Results 1 to 6 of 6

define vba for only one workbook

Hybrid View

  1. #1
    Registered User
    Join Date
    08-02-2012
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    3

    define vba for only one workbook

    Hi (BIG NEWBIE!!)

    Wrote a code as per below, but it runs in all active workbooks.

    How can I define the code that it only runs for a specific workbook?

    Thank You

    Sub AutoUpdate()
    dTime = Now + TimeValue("00:01:00")
    Application.OnTime dTime, "AutoUpdate"
    Run "LiveRefresh"
    End Sub
    Private Function GetValue(path, file, sheet, ref)
    path = "H:\ATM_Solutions\Cashing\Gary\Lesley\test"
    file = "CIT Dashboard - CIT Unavailable Incidents.xlsx"
    sheet = "Page1_1"
    ref = "$A$:$n$"
    End Function
    Sub LiveRefresh()
    '
    ' LiveRefresh Macro
    '
    
    '
        ActiveWorkbook.RefreshAll
    End Sub
    Last edited by arlu1201; 08-02-2012 at 05:04 AM.

  2. #2
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: define vba for only one workbook

    Welcome to the forum.

    I have added code tags to your post. As per forum rule 3, you need to use them whenever you put any code in your post. Please add them in future. If you need more information on how to use them, check my signature.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  3. #3
    Registered User
    Join Date
    08-02-2012
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: define vba for only one workbook

    Hi

    Appologies for not using tags

    Do you perhaps have any idea of how I can adjust my code?

    Thank You

  4. #4
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: define vba for only one workbook

    It will be good if you explain what you are trying to achieve.

  5. #5
    Registered User
    Join Date
    08-02-2012
    Location
    South Africa
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: define vba for only one workbook

    I want the code to run on only one workbook and not on the active workbook.

    The problem I am currently having is that pivots must update on "Workbook A" every minute, but when I am working on "Workbook B", excel tries to update those pivots as well, causing it to crash.

    Please help as I need a "Live Spreadsheet" ASAP for the company.

    Thank You

  6. #6
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,391

    Re: define vba for only one workbook

    In place of the "activeworkbook" object, using the "thisworkbook" object will cause the code to run on the same workbook containing the code independent of which workbook is active. Is that what you are looking for? If not, you will need to substitute an object referring to the specific workbook in question in place of the "activeworkbook" object.

+ 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