vba to save as created date or based on cell data

rooster05

New Member
Joined
Mar 4, 2017
Messages
34
hi,

i have 3 xl files named current, previous and macro. current is a report that is run every other day and uses vlookups to the previous file (previous is the current file in a completed state). macro is an empty file except for a macro to run all vlookups on the current file.

when all the vlookups are complete i need to rename current & previous to -
previous to the creation date
current to previous

is there a way i can run macro to rename these

hope this is clear


thanks in advance
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Are you renaming or doing a save as

If you are renaming, maybe something like this. It assumes your file is in the path "C:\myname", change to reflect location of your actual file

it renames the PREVIOUS to just the "Current date", I am unsure what you mean by "Creation date"

UNTESTED - you should be running the codes from outside both files
Code:
Sub Newtest()
    Name "C:\myname\previous.xlsx" As "C:\myname\" & Format(Date, "dd_mmm_yyyy") & ".xlsx"
    Name "C:\myname\Current.xlsx" As "C:\myname\previous.xlsx"
End Sub

If you are doing a saveas, it should be relatively easier :LOL:
 
Upvote 0
Sorry didn't explain that, by creation date i meant the file /report was run i wondered if this info could be obtained somewhere within the file itself.
and i trying to save as
 
Upvote 0

Forum statistics

Threads
1,214,573
Messages
6,120,310
Members
448,955
Latest member
Dreamz high

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