File tree 2 files changed +11
-8
lines changed
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ PURPOSE:
15
15
Returns list of dates in range. Excludes weekends and/or holidays if specified.
16
16
17
17
EXAMPLES:
18
-
18
+ DatesInRange ( "10/1/2010" ; "10/4/2010" ; 1 ; 0 ) = "10/1/2010¶10/4/2010"
19
19
20
20
HISTORY:
21
- Created: 2010-Oct-15 12h06 PST — Donovan A. Chandler
22
-
21
+ Created: 2010-Oct-15 12h06 PST — Donovan A. Chandler
22
+
23
23
NOTE:
24
- excludeHolidays parameter currently not supported.
24
+ omitHolidays parameter currently not supported.
25
25
*/
Original file line number Diff line number Diff line change @@ -30,14 +30,17 @@ Let ( [
30
30
31
31
/* —————————————————————————————— //
32
32
NAME:
33
- DatesInRangeLoop ( startDate ; endDate ; omitWeekends ; omitHolidays ; previousResults )
33
+ DatesInRangeLoop ( startDate ; endDate ; omitWeekends ; omitHolidays ; previousResults )
34
34
35
35
PURPOSE:
36
-
36
+ Performs recursive operation for DatesInRange(). Returns list of dates as specified.
37
37
38
38
EXAMPLES:
39
-
39
+ DatesInRangeLoop ( "10/2/2010" ; "10/4/2010" ; 1 ; 0 ; "10/1/2010" ) = "10/1/2010¶10/4/2010"
40
40
41
41
HISTORY:
42
- Created: 2010-Oct-15 12h11 PST — Donovan A. Chandler
42
+ Created: 2010-Oct-15 12h11 PST — Donovan A. Chandler
43
+
44
+ NOTE:
45
+ omitHolidays parameter currently not supported.
43
46
*/
You can’t perform that action at this time.
0 commit comments