Xtremetechnology
New Member
- Joined
- Oct 13, 2011
- Messages
- 10
dear sir,
i have a utility to move files from excel but this utility is not working for ".mp3" files. ".wav" are moving perfectly but ".mp3" files are not moving
please help
Sub MoveFiles()
Dim i As Long, LastRow As Long
LastRow = Range("A65536").End(xlUp).Row
For i = 1 To LastRow
Name Cells(i, 1).Value As Cells(i, 2).Value
Next i
End Sub
i have a utility to move files from excel but this utility is not working for ".mp3" files. ".wav" are moving perfectly but ".mp3" files are not moving
please help
Sub MoveFiles()
Dim i As Long, LastRow As Long
LastRow = Range("A65536").End(xlUp).Row
For i = 1 To LastRow
Name Cells(i, 1).Value As Cells(i, 2).Value
Next i
End Sub