+ Reply to Thread
Results 1 to 4 of 4

Auto update formula every minute

Hybrid View

  1. #1
    Registered User
    Join Date
    10-15-2013
    Location
    Miami, USA
    MS-Off Ver
    Excel 2010
    Posts
    2

    Auto update formula every minute

    Hi!
    Is there a simple way to let Excel update the results of a formula every set time, such as 1 minute? For instance with a formula that has the RAND() function. Thanks.

  2. #2
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Auto update formula every minute

    Add the below code in ThisWorkbook Code Window
    1. Copy the code that you want to use
    2. Select the workbook in which you want to store the code
    3. Hold the Alt key, and press the F11 key, to open the Visual Basic Editor
    4. In the Project Explorer, find your workbook, and open the list of Microsoft Excel Objects
    5. Right-click on the ThisWorkbook object, and choose View Code
    6. Where the cursor is flashing, choose Edit | Paste

    Private Sub Workbook_Open()
        Call SheduleTask
    End Sub
    Add the below code in a Module of that workbook

    To Add Excel VBA Code to a Workbook / This Workbook Module

    How to install your new code
    1. Copy the Excel VBA code
    2. Select the workbook in which you want to store the Excel VBA code
    3. Press Alt+F11 to open the Visual Basic Editor
    4. Choose Insert > Module
    5. Edit > Paste the macro into the module that appeared
    6. Close the VBEditor
    7. Save your workbook (Excel 2007+ select a macro-enabled file format, like *.xlsm)

    Sub CalculateMe()
    Dim Ws As Worksheet
    
    Set Ws = ThisWorkbook.Worksheets("Sheet1")
    Ws.Calculate
    Call SheduleTask
    
    End Sub
    
    Sub SheduleTask()
        Application.OnTime Now + TimeValue("00:01:00"), "CalculateMe"
    End Sub


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  3. #3
    Registered User
    Join Date
    10-15-2013
    Location
    Miami, USA
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Auto update formula every minute

    I copied the code per instructions. Re-opened the workbook, and it worked! Very cool, thanks.

  4. #4
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Auto update formula every minute

    Glad it helps you and thanks for the feedback and rep

+ 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. Auto refresh every minute
    By Dobby1981 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-11-2013, 07:51 AM
  2. Textbox with Time Value -Update every minute
    By Crebsington in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-23-2012, 05:19 PM
  3. % formula auto update
    By Fish10800 in forum Excel General
    Replies: 2
    Last Post: 10-12-2011, 12:25 PM
  4. update a cell every minute
    By joao in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-21-2008, 04:34 PM
  5. Imported data update rate < 1 minute?
    By shd in forum Excel General
    Replies: 1
    Last Post: 12-26-2007, 07:21 AM

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