Answers for "vba create copy"

VBA
0

vba copy file

' Reference needed: "Microsoft Scripting Runtime"
Dim fso As Object
Set fso = VBA.CreateObject("Scripting.FileSystemObject")
fso.CopyFile(source, destination[, overwrite] )
' Or: overrides a non opened file:
FileCopy source, destination
Posted by: Guest on February-10-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language