|
|||||
These pages are no longer updated and are only available for archive purposes.Click here to visit the pages with updated information. Calculate a weeks start dateWith the custom function below you can calculate the start date for any given week: Function WeekStartDate(intWeek As Integer, intYear As Integer) As Date
Dim FromDate As Date, lngAdd As Long
If intYear < 1 Then intYear = Year(Date) ' the current year
FromDate = DateSerial(intYear, 1, 1)
If Weekday(FromDate, vbMonday) > 4 Then lngAdd = 7
WeekStartDate = FromDate + ((7 * intWeek) - 6) - _
Weekday(FromDate, vbMonday) + lngAdd
End Function
Document last updated 2002-01-26 12:44:38 Printerfriendly version
|
|||||
|
|||||