Hi Any idea why this not working? :D
Code:
Sub ChangeInFolder()
Dim OldName As String
Dim NewName As String
Dim LastRow As Long
Dim i As Long
LastRow = Range("A65536").End(xlUp).Row
For i = 1 To LastRow
OldName = Range("A" & i).Value
NewName = Range("C" & i).Value
Name OldName As NewName
Next i
Application.ScreenUpdating = True
End Sub