Skip to content

Commit 78b976d

Browse files
committed
Converted to soft tabs.
1 parent 2337e09 commit 78b976d

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

DatesInRange.calc

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ PURPOSE:
1515
Returns list of dates in range. Excludes weekends and/or holidays if specified.
1616

1717
EXAMPLES:
18-
18+
DatesInRange ( "10/1/2010" ; "10/4/2010" ; 1 ; 0 ) = "10/1/2010¶10/4/2010"
1919

2020
HISTORY:
21-
Created: 2010-Oct-15 12h06 PST — Donovan A. Chandler
22-
21+
Created: 2010-Oct-15 12h06 PST — Donovan A. Chandler
22+
2323
NOTE:
24-
excludeHolidays parameter currently not supported.
24+
omitHolidays parameter currently not supported.
2525
*/

DatesInRangeLoop.calc

+7-4
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@ Let ( [
3030

3131
/* —————————————————————————————— //
3232
NAME:
33-
DatesInRangeLoop ( startDate ; endDate ; omitWeekends ; omitHolidays ; previousResults )
33+
DatesInRangeLoop ( startDate ; endDate ; omitWeekends ; omitHolidays ; previousResults )
3434

3535
PURPOSE:
36-
36+
Performs recursive operation for DatesInRange(). Returns list of dates as specified.
3737

3838
EXAMPLES:
39-
39+
DatesInRangeLoop ( "10/2/2010" ; "10/4/2010" ; 1 ; 0 ; "10/1/2010" ) = "10/1/2010¶10/4/2010"
4040

4141
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.
4346
*/

0 commit comments

Comments
 (0)