Saving file with previous Monday date in filename

Darren_workforce

Board Regular
Joined
Oct 13, 2022
Messages
128
Office Version
  1. 365
Platform
  1. Windows
Hello,

My macro file generates a new worksheet and at the end, it saves the file to my work desktop. I am currently renaming the file and adding the date in manually. I'd love to incorporate the prior Monday's date as well if that's possible just to shave off a few steps before I need to send the data to my superiors.

Today's date is 6.6.2023 and last Monday was 5.29. If I were to run the file today, preferably the filename would be "Attendance Report week of 5.29.2023". Below is what I have setup now. And I won't always run the report on a Tuesday so regardless of the weekday I run it, the results should still be the previous Monday.

All help would be greatly appreciated.

VBA Code:
ActiveWorkbook.SaveAs Filename:="C:\Users\darren\desktop" & fName & "\Attendance Report week of " & ".xlsx" _
, FileFormat:=xlWorkbookDefault, CreateBackup:=False
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
how bout this:

dim vDat as date
vDat = getLastMondaydate(date())
vDateName = format(vDat,"mm.dd.yyyy")
vFile = "C:\Users\darren\desktop" & fName & "\Attendance Report week of " & vDateName & ".xlsx"
ActiveWorkbook.SaveAs Filename:= vFile


Code:
Public Function getLastMonday(ByVal pvDate)
Dim iDow As Integer, iSTARTDAY As Integer
Dim i As Integer
Dim vStart, vEnd

iSTARTDAY = vbMonday

iDow = Format(pvDate, "w")
Select Case True
   Case IsNull(pvDate)
     'nothing to do
  Case Else
        vStart = DateAdd("d", -(iDow - 1), pvDate)
        vEnd = DateAdd("d", 6, vStart)
End Select

getLastMonday = DateAdd("d", -6, vStart)
End Function
 
Upvote 0
how bout this:

dim vDat as date
vDat = getLastMondaydate(date())
vDateName = format(vDat,"mm.dd.yyyy")
vFile = "C:\Users\darren\desktop" & fName & "\Attendance Report week of " & vDateName & ".xlsx"
ActiveWorkbook.SaveAs Filename:= vFile


Code:
Public Function getLastMonday(ByVal pvDate)
Dim iDow As Integer, iSTARTDAY As Integer
Dim i As Integer
Dim vStart, vEnd

iSTARTDAY = vbMonday

iDow = Format(pvDate, "w")
Select Case True
   Case IsNull(pvDate)
     'nothing to do
  Case Else
        vStart = DateAdd("d", -(iDow - 1), pvDate)
        vEnd = DateAdd("d", 6, vStart)
End Select

getLastMonday = DateAdd("d", -6, vStart)
End Function
I'm trying to add that into my sub and am being told "Sub or Function not defined". Maybe I should post the full sub just in case I'm not including your data correctly (which is highly likely):

VBA Code:
Sub New_Book()
'
   Sheets(Array("Supe Breakdown", "% Breakdown", "Chart", "Raw Data", "% Raw Data")).Copy
   
Worksheets(3).Select

ActiveWorkbook.SaveAs Filename:="C:\Users\darren\desktop" & fName & "\Attendance Report week of" & ".xlsx" _
, FileFormat:=xlWorkbookDefault, CreateBackup:=False
   
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,092
Messages
6,123,063
Members
449,090
Latest member
fragment

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