VBA Loop and Refresh (shift+F9)

pstreett

New Member
Joined
Dec 4, 2015
Messages
2
Hi All,

I have an excel file with multiple tabs, 9 to be exact, and want to be able to refresh all, starting with the last tab and moving backward.

The refresh is in conjunction with IBM TM1, so I believe I have to use "TM1Recalc1" as the refresh.

I currently have the below, but I don't think it's efficient or as simple as it should be. Any ideas?


Sub TrendUpdate()


Dim WS_Count As Integer
Dim I As Integer


' Set WS_Count equal to the number of worksheets in the active
' workbook.
WS_Count = ActiveWorkbook.Worksheets.Count


' Begin the loop.
For I = 1 To WS_Count

Sheets(I).Select
Application.Run "TM1Recalc1"

Range("A2").Select



Next I


Sheet1.Select
Application.Run "TM1Recalc1"
Range("A1").Select

'SS Data refresh
Sheet9.Select
Sheet9.Calculate
Range("A1").Select

'MTD Total & Regions refresh
Sheet1.Select
Sheet1.Calculate
Range("A1").Select

Sheet2.Select
Sheet2.Calculate
Range("A1").Select

Sheet3.Select
Sheet3.Calculate
Range("A1").Select

Sheet4.Select
Sheet4.Calculate
Range("A1").Select

Sheet5.Select
Sheet5.Calculate
Range("A1").Select

Sheet6.Select
Sheet6.Calculate
Range("A1").Select

Sheet7.Select
Sheet7.Calculate
Range("A1").Select

Sheet8.Select
Sheet8.Calculate
Range("A1").Select




End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Welcome to the board. You should very rarely need to use .Select in your code, it isn't required and slows macro execution. It may be worth posting the code for TMIRecalc1. For now, try:
Code:
Sub TrendUpdate()

    Dim x       As Long
    Dim wsCount As Long
    
    wsCount = ActiveWorkbook.Worksheets.count
    
    Application.ScreenUpdating = False
    
    For x = wsCount To 1 Step -1
        With Sheets(x)
            .Select
            Application.Run "TMIRecalc1"
            .Calculate
            .Range("A1").Select
        End With
    Next x
    
    Application.ScreenUpdating = True
        
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,588
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top