<-- Previous || Up || Next -->

Previous Day Of Week Function
Dates Times Class

Public Function PreviousDayOfWeek( _
      ByVal vDate As Variant _
    , ByVal vDayOfWeek As Variant _
    ) As Variant

Returns the date of the previous specific day of the week (for example, the previous Saturday).

Examples:
    Format$(#4/15/1996#, "ddd") = "Mon"
    PreviousDayOfWeek(#4/15/1996#, vbSunday)  = #4/14/1996#
    PreviousDayOfWeek(#4/15/1996#, vbFriday)  = #4/12/1996#
    PreviousDayOfWeek(#4/15/1996#, vbTuesday) = #4/09/1996#
    PreviousDayOfWeek(#4/15/1996#, vbMonday)  = #4/08/1996#
    PreviousDayOfWeek(#4/15/1996#, #4/15/1996#)  = #4/08/1996#
See also:
    PreviousDayOfWeekOnOrBefore Function
    NextDayOfWeek Function
    vbSunday Property, et. al.
vDate: The date whose previous specific day of the week is returned. Function returns Null if vDate is Null or cannot be fixed up to a Date.
vDayOfWeek: Date or numeric value which represents the day of the week (Sunday, Monday, etc.). Function returns Null if vDayOfWeek is Null or cannot be fixed up to either a date or a number. Function first checks numeric values to see if they are one of the vb constants that represent the days of the week (vbSunday, vbMonday, vbTuesday, vbWednesday, vbThursday, vbFriday, or vbSaturday). Otherwise, numeric values are interpreted as date values. Function examines the date component of date/time values to determine its weekday.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.