Thread: rename file
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default rename file

Use the Name statement

Dim OldName, NewName
OldName = "C:\files\i have picture.jpg
NewName = range("A1").Value
Name OldName As NewName

--

HTH

RP
(remove nothere from the email address if mailing direct)


"choice" wrote in message
...
is it possible to rename a picture file using VBA? for example in file
C:/files/ i have picture.jpg, can i change that file name to
range("a1").value ?

thanks in advance