Results 1 to 2 of 2

Thread: Copy Entire Excel Sheet to existing sheet?

Threaded View

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jul 2001
    Location
    Maumelle, AR
    Posts
    624

    Copy Entire Excel Sheet to existing sheet?

    I'm having some trouble trying to copy an entire worksheet from one workbook to a sheet that already exists in a different workbook. Can this be done? Here's my code:

    Code:
    Sub COPY_FROM_MainSched_TO_DoorSched()
    
    Dim SourcePath, DestPath, SourceFile, DestFile As String
    
    'set variables
    SourcePath = "H:\schedule\"
    DestPath = "H:\shared_tools\"
    SourceFile = "Cabot, S.xls"
    DestFile = "door_inventory.xls"
    
        Range("A1").Select
        Application.DisplayAlerts = False
        Application.ScreenUpdating = False
        Workbooks.Open Filename:=SourcePath & SourceFile  
        Sheets("LOG (2)").Select
        ActiveSheet.Copy
        Windows(DestFile).Activate
        Sheets("temporary").Activate
        ActiveSheet.Paste
    
       
    End Sub
    It seems my problem is that the sheet I'm trying to copy is not getting copied to the clipboard.
    Last edited by hipopony66; Aug 22nd, 2005 at 11:49 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width