Try this, it assumes that Door_Inventory is the workbook with the code:

VB Code:
  1. Option Explicit
  2.  
  3. Sub COPY_FROM_MainSched_TO_DoorSched()
  4.  
  5. Dim SourcePath As String
  6. Dim DestPath As String
  7. Dim SourceFile As String
  8. Dim DestFile As String
  9. Dim SourceWbk As String
  10. Dim DestWbk As String
  11.  
  12.  
  13. 'set variables
  14. SourcePath = "H:\schedule\"
  15.  
  16. DestPath = "H:\shared_tools\"
  17.  
  18. SourceFile = "Cabot, s.xls"
  19.  
  20. DestFile = "door_inventory.xls"
  21.  
  22. SourceWbk = SourcePath & SourceFile
  23.  
  24. DestWbk = DestPath & DestFile
  25.  
  26. 'Disable alerts & screen updating
  27.     Application.DisplayAlerts = False
  28.     Application.ScreenUpdating = False
  29.    
  30. 'Open the source workbook
  31.     Workbooks.Open SourceWbk
  32.    
  33. 'Copy the sheet from the source workbook to the Destination workbook
  34.     ActiveWorkbook.Sheets("Log(2)").Copy after:=ThisWorkbook.Sheets("Menu")
  35.     Windows(DestFile).Activate
  36.    
  37.     Application.DisplayAlerts = True
  38.     Application.ScreenUpdating = True
  39. End Sub