VBA move file, copy sheet, then delete it

Dao Ha Quang

New Member
Joined
Apr 30, 2023
Messages
20
Office Version
  1. 2016
Sub CopySheet()

FileName = Application.GetOpenFilename("Excel Files (*.xls;*.xlsx;*.xlsm),*.xls;*.xlsx;*.xlsm", Title:="OPEN FILE", MultiSelect:=False)
Set closedBook = Workbooks.Open(FileName)
closedBook.Sheets("Sheets1").Move Before:=ThisWorkbook.Sheets("Sheets2")
closedBook.Close SaveChanges:=False
If FileName = False Then Exit Sub

End Sub
Hello
I use this VBA to select open excel file then Copy "Sheets1" to current excel file.
But there is a problem that if the opened excel file is in a folder with name have special character, it will get the error "Path error / file access error: '.\VBxxx.tmp"
I have the idea to copy the File containing "Sheets1" to the Desktop, then copy "Sheets1" to the current excel file, then delete the file on the Desktop. But I don't know how to do that. Help me
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Try this.

It copies the selected file to the active workbook folder and then deletes it afterwards.
It assumes that a file by the same name does not already exist in this folder.

It does not check that the required worksheets exist but it will throw up an error if they do not.

VBA Code:
Public Sub subCopyWorksheet()
Dim strFileName As Variant
Dim oFSO As Object
Dim Wb As Workbook

On Error GoTo Err_Handler

    ActiveWorkbook.Save
    
    Set Wb = ActiveWorkbook
    
    Set oFSO = CreateObject("Scripting.FileSystemObject")

    strFileName = Application.GetOpenFilename("Excel Files (*.xls;*.xlsx;*.xlsm),*.xls;*.xlsx;*.xlsm", Title:="OPEN FILE", MultiSelect:=False)
    
    If strFileName = False Then
        Exit Sub
    End If
            
    oFSO.CopyFile strFileName, ActiveWorkbook.Path & "\"
    
    strFileName = Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
        
    Workbooks.Open FileName:=ActiveWorkbook.Path & "\" & _
        Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
        
    ActiveWorkbook.Worksheets("Sheets1").Copy before:=Wb.Sheets("Sheets2")
                
    Workbooks(strFileName).Close SaveChanges:=True
    
    Kill ActiveWorkbook.Path & "\" & strFileName

Exit_Handler:

    Exit Sub

Err_Handler:

    MsgBox "There has been an error.", vbInformation, "Warning!"
    
    Resume Exit_Handler
    
End Sub
 
Upvote 0
Try this.

It copies the selected file to the active workbook folder and then deletes it afterwards.
It assumes that a file by the same name does not already exist in this folder.

It does not check that the required worksheets exist but it will throw up an error if they do not.

VBA Code:
Public Sub subCopyWorksheet()
Dim strFileName As Variant
Dim oFSO As Object
Dim Wb As Workbook

On Error GoTo Err_Handler

    ActiveWorkbook.Save
   
    Set Wb = ActiveWorkbook
   
    Set oFSO = CreateObject("Scripting.FileSystemObject")

    strFileName = Application.GetOpenFilename("Excel Files (*.xls;*.xlsx;*.xlsm),*.xls;*.xlsx;*.xlsm", Title:="OPEN FILE", MultiSelect:=False)
   
    If strFileName = False Then
        Exit Sub
    End If
           
    oFSO.CopyFile strFileName, ActiveWorkbook.Path & "\"
   
    strFileName = Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
       
    Workbooks.Open FileName:=ActiveWorkbook.Path & "\" & _
        Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
       
    ActiveWorkbook.Worksheets("Sheets1").Copy before:=Wb.Sheets("Sheets2")
               
    Workbooks(strFileName).Close SaveChanges:=True
   
    Kill ActiveWorkbook.Path & "\" & strFileName

Exit_Handler:

    Exit Sub

Err_Handler:

    MsgBox "There has been an error.", vbInformation, "Warning!"
   
    Resume Exit_Handler
   
End Sub
Thank you. This seems very good, but if the folder active workbook file has special characters, it still seems to be error,
Because this file has many users and they are not professional.
I want to copy in to the Desktop to make sure the error won't happen
 
Upvote 0
This will copy it temporarily to the Desktop folder.

VBA Code:
Public Sub subCopyWorksheet()
Dim strFileName As Variant
Dim oFSO As Object
Dim Wb As Workbook
Dim strDesktopPath As String

On Error GoTo Err_Handler

    ActiveWorkbook.Save
    
    strDesktopPath = fncGetDesktop
        
    Set Wb = ActiveWorkbook
    
    Set oFSO = CreateObject("Scripting.FileSystemObject")

    strFileName = Application.GetOpenFilename("Excel Files (*.xls;*.xlsx;*.xlsm),*.xls;*.xlsx;*.xlsm", Title:="OPEN FILE", MultiSelect:=False)
    
    If strFileName = False Then
        Exit Sub
    End If
    
    ' Copy file to Desktop.
    oFSO.CopyFile strFileName, strDesktopPath & "\"
        
    strFileName = Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
        
    Workbooks.Open FileName:=strDesktopPath & "\" & _
        Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
        
    ActiveWorkbook.Worksheets("Sheets1").Copy before:=Wb.Sheets("Sheets2")
                
    Workbooks(strFileName).Close SaveChanges:=True
    
    Kill strDesktopPath & "\" & strFileName

Exit_Handler:

    Exit Sub

Err_Handler:

    MsgBox "There has been an error.", vbInformation, "Warning!"
    
    Resume Exit_Handler
    
End Sub

Public Function fncGetDesktop() As String
Dim oWSHShell As Object

    Set oWSHShell = CreateObject("WScript.Shell")
    fncGetDesktop = oWSHShell.SpecialFolders("Desktop")
    Set oWSHShell = Nothing

End Function
 
Upvote 0
This will copy it temporarily to the Desktop folder.

VBA Code:
Public Sub subCopyWorksheet()
Dim strFileName As Variant
Dim oFSO As Object
Dim Wb As Workbook
Dim strDesktopPath As String

On Error GoTo Err_Handler

    ActiveWorkbook.Save
  
    strDesktopPath = fncGetDesktop
      
    Set Wb = ActiveWorkbook
  
    Set oFSO = CreateObject("Scripting.FileSystemObject")

    strFileName = Application.GetOpenFilename("Excel Files (*.xls;*.xlsx;*.xlsm),*.xls;*.xlsx;*.xlsm", Title:="OPEN FILE", MultiSelect:=False)
  
    If strFileName = False Then
        Exit Sub
    End If
  
    ' Copy file to Desktop.
    oFSO.CopyFile strFileName, strDesktopPath & "\"
      
    strFileName = Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
      
    Workbooks.Open FileName:=strDesktopPath & "\" & _
        Mid(strFileName, InStrRev(strFileName, "\", , vbTextCompare) + 1)
      
    ActiveWorkbook.Worksheets("Sheets1").Copy before:=Wb.Sheets("Sheets2")
              
    Workbooks(strFileName).Close SaveChanges:=True
  
    Kill strDesktopPath & "\" & strFileName

Exit_Handler:

    Exit Sub

Err_Handler:

    MsgBox "There has been an error.", vbInformation, "Warning!"
  
    Resume Exit_Handler
  
End Sub

Public Function fncGetDesktop() As String
Dim oWSHShell As Object

    Set oWSHShell = CreateObject("WScript.Shell")
    fncGetDesktop = oWSHShell.SpecialFolders("Desktop")
    Set oWSHShell = Nothing

End Function
Thank you
However, I would like to add one more thing. After the "There has been an error". I want to close and delete the copied file to the Desktop
 
Last edited:
Upvote 0
Do you get the "There has been an error" message?

The following line should delete the copied file.

Kill strDesktopPath & "\" & strFileName
 
Upvote 0
Do you get the "There has been an error" message?

The following line should delete the copied file.

Kill strDesktopPath & "\" & strFileName
This doesn't seem to work
When the worksheet to be copied does not exist, VBA will give an error and it will open the copied workbook to the Desktop.
I want when it error, it CLOSE and DELETE that copied workbook
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,973
Members
449,059
Latest member
oculus

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