I've been working on a code to rename thousands of folders within a parent folder. Here is what I have so far -- I'm not entirely sure where to put what or what codes to use.
I have an excel file set up where Column B is the old file source and Column C is the new file source.
How do I code this into the VBA?
Sub FolderRename()
'Declaring variables
Dim complete_pathof_folder As String, state As String
For i = 2 To Sheets("Rename File").Range("b2").End(x1Down).Row
'Variable values
complete_pathof_folder = Cells(i, 2)
state = Cells(i, 5)
'Renames Original Folder Name
Name "C:\Users\n0269632\Desktop\Customers\AFL TELECOMMUNICATIONS"
As "C:\Users\n0269632\Desktop\Customers\AFL TELECOMMUNICATIONS (SC)"
Next i
'Repeats Code Until an Empty Cell is Reached
Do Until IsEmpty(Cells(iRow, 1))
dCellValues(iRow) = Cells(iRow, 2).Value
iRow = iRow + 1
Loop
End Sub
You've put the original folder name into a variable (complete_pathof_folder), so put the new folder name into a variable the same way:
Then you just want to use these variables in the Name statement:
You probably want to do some error checking such as:
Otherwise, the code will throw an error if a path in the list doesn't exist.