Auto save

Flex13CMP

New Member
Joined
Apr 9, 2002
Messages
7
Hi I was wondering if somebody could help me make a macro so every monday my workbook saves as a seperate file everyweek.
e.g on modnay the 13th feb it saves the file 02/13/02
and the week after it says 02/20/02.
Please could somebody help me on this topic, much appreciated thank you.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try the following code:

Private Sub Workbook_Open()
Dim TodayDate As Date
TodayDate = Date
If WeekdayName(Weekday(TodayDate)) = "Monday" _
Then ThisWorkbook.SaveAs Filename:=Format(TodayDate, "mm_dd_yy")
End Sub

Put it in the module for your workbook.
 
Upvote 0

Forum statistics

Threads
1,215,274
Messages
6,123,995
Members
449,137
Latest member
abdahsankhan

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