Renaming files using column reference

sanilmathews

Board Regular
Joined
Jun 28, 2011
Messages
102
I would like to have a VBA code that would rename files (both excel and pdf) in a specific path. The files in the path are initially named as 1, 2, 3, 4... etc. Now the template that has the VBA will have the exact number of files with the number series in Column A. While in Column B, I will have the new file names that should be used for renaming those files in the path.


The VBA should refer the files in the path using the series in Column A and rename it to a new name that is in Column B.

Thanks in advance!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
sanilmatthews,

I found this code at: https://www.pcreview.co.uk/threads/rename-files-with-vba.3937575/
that seems to fit your need. Give it a try.

Code:
[COLOR=#141414][FONT=&quot]Sub RenameFiles()[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]For R = 1 To Range("A1").End(xlDown).Row[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]OldFileName = Cells(R, 1).Value[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]NewFileName = Cells(R, 2).Value[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]On Error Resume Next[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]If Not Dir(OldFileName) = "" Then Name OldFileName As NewFileName[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]On Error GoTo 0[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]Next[/FONT][/COLOR]
[COLOR=#141414][FONT=&quot]End Sub[/FONT][/COLOR]
 
Upvote 0

Forum statistics

Threads
1,214,782
Messages
6,121,532
Members
449,037
Latest member
tmmotairi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top