Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have spreadsheet with images named by one of our vendors. We need to rename these images with our SKUs. I've done a VLookup to juxtapose the vendor image names with our SKUs, now how do I automate a rename of the actual images in the file with our SKUs listed in excel? Thank you!!! Tobey |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tobey
You can loop through the list and use the Name function If you need help with the loop post back with details Sub Move_Rename_One_File() 'You can change the path and file name Name "C:\Users\Ron\SourceFolder\Test.xls" As "C:\Users\Ron\DestFolder\TestNew.xls" End Sub Instead of this "C:\Users\Ron\SourceFolder\Test.xls" You can use a cell reference in the loop to rename the file -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Tobey" wrote in message ... Hi, I have spreadsheet with images named by one of our vendors. We need to rename these images with our SKUs. I've done a VLookup to juxtapose the vendor image names with our SKUs, now how do I automate a rename of the actual images in the file with our SKUs listed in excel? Thank you!!! Tobey |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Look up the Name Statement in the VB help files... it allows you to rename
files on the hard drive (as an extra hint, I always supply a full path for both arguments when using this command). Rick "Tobey" wrote in message ... Hi, I have spreadsheet with images named by one of our vendors. We need to rename these images with our SKUs. I've done a VLookup to juxtapose the vendor image names with our SKUs, now how do I automate a rename of the actual images in the file with our SKUs listed in excel? Thank you!!! Tobey |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Renaming files in a directory | Excel Programming | |||
Why is MS Excel renaming worksheets (truncating names)? Is there a fix for this? | Setting up and Configuration of Excel | |||
Renaming files in a directory | Excel Programming | |||
Creating a macro that lists directory names within a directory.... | Excel Programming | |||
Renaming all files in a directory | Excel Programming |