Renaming Workbooks based on Cell Value with VBA

Jambi46n2

Active Member
Joined
May 24, 2016
Messages
260
Office Version
  1. 365
Platform
  1. Windows
The code below works with renaming workbooks, however it also moves them as well.

Is there a way to modify the code to make a copy of the workbook instead of moving it?

Thanks much in advance!

Code:
Sub RenameTesting()


Dim OldName1, NewName1

'Work books based on cell values below
OldName1 = [F10]: NewName1 = [C10]

'Renames workbooks and moves workbooks
Name OldName1 As NewName1

End Sub
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
F681DvQ
Screen shot of what I'm going for...

https://ibb.co/F681DvQ
 
Last edited:
Upvote 0
How about
Code:
   Dim Fso As Object
   Set Fso = CreateObject("scripting.filesystemobject")
   Fso.CopyFile OldName1, NewName1
 
Last edited:
Upvote 0
Thanks for the prompt response Fluff, you sir are a gentleman and a scholar!
 
Last edited:
Upvote 0
What error number & message did you get?
 
Upvote 0
What error number & message did you get?

The error message was human error on my part.

Can't thank you enough again.

I sincerely appreciate it.
 
Last edited:
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,213,526
Messages
6,114,122
Members
448,550
Latest member
CAT RG

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