Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 58
Default Moving a file using excel vba

Thanks Everyone for your help will try all.

Greg
"Bob Phillips" wrote in message
...
Look at Name

sOldName = "myFile.xls"
sNewName = "c:\some other dir\its subdir\myNwFile.xls"
Name sOldName As sNewName

It won't create the directories if they don't exist so you can just do

that
like so

On Error Resume Next
MkDir "c:\some other dir\its subdir"
MkDir "c:\some other dir\its subdir\myNwFile.xls"
On Error Goto 0

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Greg" wrote in message
...
Hi all I am looking to use excel to move a file when necessary. i.e.

I need to move a file called darts.xls to the folder c:\games

Thanks

Greg






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Moving a sheet from one Excel file to another? Kathy Excel Discussion (Misc queries) 6 April 28th 09 03:32 PM
Moving data from one excel file to another audif New Users to Excel 4 June 5th 07 06:37 PM
How can I get a moving Clip art o move in my Excel file??? Jessica C. Jara Excel Discussion (Misc queries) 1 July 7th 06 06:15 PM
moving file from excel to word Clovis Excel Discussion (Misc queries) 2 April 8th 06 04:28 PM
Moving from one Excel File to Another Kevin Excel Programming 3 October 15th 04 03:29 AM


All times are GMT +1. The time now is 10:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"