Muévase entre hojas cada 10 segundos y traiga datos cada 20 minutos en un código

Muévase entre hojas cada 10 segundos y traiga datos cada 20 minutos en un código

Necesito un script que cambie entre hojas cada 10 segundos y luego ejecute un código cada 20 minutos que genere algunos datos usando la función copiar y pegar, y luego realice un bucle hasta que presione "Esc".

Este es mi código hasta ahora:

Sub Move_Between_Sheets()
  Dim i As Long, j As Long, t As Single, k As Long
  Application.ScreenUpdating = True
i = 0
  j = Sheets.Count
  On Error GoTo exit_
  Application.EnableCancelKey = xlErrorHandler

  Do
  For k = 1 To 3
    i = i + 1
    If i > j Then i = 1
    Sheets(i).Select
    t = Timer + 1
    Application.Wait Now + TimeSerial(0, 0, 10)
    If Timer < t Then Exit Do
  Next k
  Call BringPK03
  Loop
exit_:
End Sub 
------------------
Sub BringPK03()

Dim sheet As Worksheet
Dim wbPlantillas As Workbook
Dim wbAplicativo As Workbook

Set wbAplicativo = ThisWorkbook
 Application.ScreenUpdating = False
    'Application.Calculation = xlCalculationManual
'13. URL [Link]
'The database workbook is opened from WorkPoint. The sheets in database workbook are copied and pasted in wbAplicativo
   Set wbPlantillas = Workbooks.Open("C:\Users\jmartine\Desktop\Tracking Advance.xlsx", True, True)

   wbPlantillas.Sheets("FC Paso a Paso").Range("A1:AU4500").Copy

   wbAplicativo.Sheets("Sheet1").Range("A1:AO1573").PasteSpecial xlPasteValues
   Application.CutCopyMode = False

   wbPlantillas.Close savechanges:=False
   Windows("BringData.xlsm").Activate

   wbAplicativo.Worksheets("Sheet1").Activate
   Application.ScreenUpdating = True
   Range("A1").Select
   Call Move_Between_Sheets


End Sub

Mi código se ejecuta hasta que la función BringPK03 trae los datos y los pega en mi libro de trabajo, y luego el código continúa pero de alguna manera el movimiento entre hojas no funciona.

Respuesta1

En tu Move_Between_Sheets() seleccionas la hoja, pero no la activas. El cambio sólo se realizará después de activarlo.

información relacionada