|
|
|
|
|
LastDayOfWeek (Function) In french: DernierJourDeLaSemaine Returns the date of the last day of the week corresponding to a given date. This option enables you to easily find the date to which a Sunday corresponds for a given date.
// Click the Button control "Rest of the week" EDT_END_DATE = LastDayOfWeek(EDT_START_DATE)
NbDaysBeforeWE = DateDifference(LastDayOfWeek(MyDate), MyDate)-2
LastDayOfWeek("20111103") // Returns 20110611
Syntax
<Result> = LastDayOfWeek(<Date>)
<Result>: Character string or Date Date in YYYYMMDD format corresponding to the last day of the week. <Date>: Character string or Date Date in YYYYMMDD format for which the last day of the week is searched. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|