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.
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.
Add the below code in ThisWorkbook Code Window
- Copy the code that you want to use
- Select the workbook in which you want to store the code
- Hold the Alt key, and press the F11 key, to open the Visual Basic Editor
- In the Project Explorer, find your workbook, and open the list of Microsoft Excel Objects
- Right-click on the ThisWorkbook object, and choose View Code
- Where the cursor is flashing, choose Edit | Paste
Add the below code in a Module of that workbook![]()
Private Sub Workbook_Open() Call SheduleTask End Sub
To Add Excel VBA Code to a Workbook / This Workbook Module
How to install your new code
- Copy the Excel VBA code
- Select the workbook in which you want to store the Excel VBA code
- Press Alt+F11 to open the Visual Basic Editor
- Choose Insert > Module
- Edit > Paste the macro into the module that appeared
- Close the VBEditor
- 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
I copied the code per instructions. Re-opened the workbook, and it worked! Very cool, thanks.
Glad it helps you and thanks for the feedback and rep![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks