Thread
:
moving a file to another folder
View Single Post
#
4
Posted to microsoft.public.excel.programming
Don Guillett
external usenet poster
Posts: 10,124
moving a file to another folder
Would you believe it's this easy
Sub movefile()
OldName = "C:\oldfolder\filename.xls"
NewName = "C:\newfolder\filename.xls"
Name OldName As NewName
End Sub
--
Don Guillett
SalesAid Software
"Chris" wrote in message
...
does anyone have the code needed to move a file to another folder, or a
way
of doing this through save as and then delete. The folder will be picked
via
a variable.
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett