I get a Run-time error '52' (Bad file name or number) on the FileCopy line. The string variables seem to have the correct file location and the files open up fine when done manually. Not sure what I'm doing wrong here.
Sub copyOver()
Dim sourceFile, destFile As String
Dim fle As Variant
destFile = Sheet11.Range("A1").Value
For Each fle In Sheet11.Range("A2:A5")
sourceFile = fle.Value
FileCopy sourceFile, destFile
Next fle
End Sub