Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TIME_SUMMARY_ARCHIVE.[PROJECT NAME], Sum(TIME_SUMMARY_ARCHIVE.[HRS THIS WEEK]) AS [SumOfHRS THIS WEEK], TIME_SUMMARY_ARCHIVE.Date
FROM TIME_SUMMARY_ARCHIVE
GROUP BY TIME_SUMMARY_ARCHIVE.[PROJECT NAME], TIME_SUMMARY_ARCHIVE.Date
HAVING (((TIME_SUMMARY_ARCHIVE.Date) Between [Start Date] And [End Date]));
Function rename_timesheet1()
Dim db As Database
Set db = CurrentDb()
Dim strbegDate As DAO.Recordset
Dim strendDate As DAO.Recordset
Dim LBGSQL As String
Dim LEDSQL As String
Dim LGBG As String
Dim LGED As String
Dim strpath As String
Dim begindate As String
Dim enddate As String
LBGSQL = "select begin_date from tbl_dates_for_report"
LEDSQL = "select end_date from tbl_dates_for_report"
Set strbegDate = db.OpenRecordset(LBGSQL)
Set strendDate = db.OpenRecordset(LEDSQL)
strpath = "U:\Projects\time tracker\testing\"
If strbegDate.EOF = False Then
LGBG = strbegDate("begin_date")
LGED = strendDate("end_date")
Else
LGST = "Not Found"
End If
Name "U:\Projects\time tracker\testing\weekly_project_summary.xlsx" As "U:\Projects\time tracker\testing\weekly_project_summary_" & Format(LGBG, "yyyymmdd") & "_" & Format(LGED, "yyyymmdd") & ".xlsx"
strbegDate.Close
Set strbegDate = Nothing
strendDate.Close
Set strendDate = Nothing