Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to get Monday's date from given date?
Message
 
 
To
16/04/2002 14:50:51
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00645626
Message ID:
00645632
Views:
9
The following function will return date of any day of the week for specified date. It assumes that Sunday is the first day of the week.
Function DOWdate
Lparams dInDate, nDow
Return IIF(BETWEEN(nDOW,1,7), dInDate + (nDow - DOW(dInDate)), {})

? DOWdate( DATE(), 1)   && date for Sunday
? DOWdate( DATE(), 2)   && date for Monday
? DOWdate( DATE(), 7)   && date for Saturday
>Hi All,
>
>I’m working on a payroll overtime program and struggling with the following. End user is suppose to give a date range and overtime is calculated accordingly. Our work week starts on Monday.
>
>My question is ,
> If user gives the starting date (MyDate) any thing other than MONDAY, how to find Monday’s date from MyDate ???
>
>Please Help !!!
>
>TIA
>
>- Jeana -
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform