VB Script will not run and stops at Sub

Ray Rz

New Member
Joined
Jun 19, 2018
Messages
29
Code:
Sub Macro1()


For i = 1 To 500000




'
' Macro1 Macro
' Pull Data and Refresh
'
' Keyboard Shortcut: Ctrl+Shift+Y
'
MsgBox ("Update may take several minutes,  Click Ok to begin")
      


    ChDir "C:\Users\measuser\Documents\HHI Current Month"
    Workbooks.Open Filename:= _
        "C:\Users\measuser\Documents\HHI Current Month\HHIEnergyInvoice.xlsx"
        
    Range("A2:P224").Copy
    'Selection.Copy
    'ActiveCell.Offset().Range("A2:P224").Select
    'Selection.Copy
    Windows("VBA Extractor r55 with code.xlsm").Activate
    Sheets("Invoice Summary").Select.ActiveCell.Offset().Range("A1:P224").Paste.ActiveSheet.Range("A2:P224").PasteSpecial Paste:=xlPasteValues
    
    
    
    
    
    Application.CutCopyMode = False




'
    ChDir "C:\Users\measuser\Documents\HHI Current Month"
    Workbooks.Open Filename:= _
        "C:\Users\measuser\Documents\HHI Current Month\HHIEnergyInvoiceDetailAdded.xlsx"
    ActiveCell.Offset(0, 0).Range("A2:AQ50000").Select
    Selection.Copy
    Windows("VBA Extractor r55 with code.xlsm").Activate
    Sheets("Invoice Summary").Select
    ActiveCell.Offset(0, 0).Range("A2:AQ50000").Select.ActiveSheet.PasteSpecial Paste = xlPasteValues
    
    
    Application.CutCopyMode = False
    '




    ChDir "C:\Users\measuser\Documents\HHI Current Month"
    Workbooks.Open Filename:= _
        "C:\Users\measuser\Documents\HHI Current Month\HHIMasterPoleSetFile.xlsx"
    ActiveCell.Offset(0, 0).Range("C2:AQ50000").Select
    Selection.Copy
    Windows("VBA Extractor r55 with code.xlsm").Activate
    Sheets("Invoice Summary").Select
    ActiveCell.Offset(0, 0).Range("C2").Select.ActiveSheet.PasteSpecial Paste = xlPasteValues
    
    
    Application.CutCopyMode = False
    
' Keyboard Shortcut: Ctrl+r






' replace with Refresh All (had to remove the check for Enable Background refresh to make it wait)


    ActiveWorkbook.RefreshAll
    
'  Refresh all Pivot tables in all worksheets


Dim shtTemp As Worksheet
Dim pvtTable As PivotTable
 
For Each shtTemp In ActiveWorkbook.Worksheets
    For Each pvtTable In shtTemp.PivotTables
        pvtTable.RefreshTable
    Next
Next


'
'    ChDir "C:\Users\measuser\Desktop\HHI Invoice Data Files"
'    ActiveWorkbook.SaveAs Filename:= _
'        "C:\Users\measuser\Desktop\HHI Invoice Data Files\VBA Extractor r56 with code.xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=True


MsgBox ("Update Complete,All data is Up-to date")




End Sub




End

Would any one be able to look at this and tell me why this will not run? It bombs out at the Sub. I am able to run it somewhat but cannot tie it together to completion.
Thank you,
Ray
 
Last edited by a moderator:

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I am trying to create a modue where it goes into my main file, and copies data into the file for 3 different copy/[astes, then it would run the refresh of all tables and say update complete.

Ray
 
Upvote 0
Try removing the word End after End Sub
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,181
Members
448,871
Latest member
hengshankouniuniu

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