Try:
Sub OpenDailyWorkbook()
Dim sPath As String
Dim sFileName As String
Dim wb As Workbook
sPath = "C:\Temp\" ' change as necessary
sFileName = "Pickup List " & Format(Date, "mmm d") & ".xlsx"
If Dir(sPath & sFileName) = "" Then
MsgBox "File " & sPath & sFileName & " was not found", vbExclamation + vbOKOnly
Else
Set wb = Workbooks.Open(sPath & sFileName)
End If
End Sub
(you don't need the TODAY() formula or the formatted name in cells B3 and C2 - the code does that formatting for the current date)
Bookmarks