I need to move the file from one location to another folder using VBA , But i am getting error msg . Could you please help me
Below is my code
For m = 1 To fnum
MsgBox " Please Select " & m & "files"
ffiles(m) = Application.GetOpenFilename
Next m
If Dir(outputfolder) = "" Then
fso.createfolder (outputfolder)
End If
fso.Movefile ffiles(m), outputfolder " getting error at this place "
fsodeclared anywhere in that code. Second of all, why create an array offfilesand then only move the last file? – LittleBobbyTables Jan 24 at 15:13