Skip to main content

List.Dates

Generates a list of date values given an initial value, count, and incremental duration value.

Syntax

List.Dates(
start as date,
count as number,
step as duration
) as list

Remarks

Returns a list of date values of size count, starting at start. The given increment, step, is a duration value that is added to every value.

Examples

Example #1

Create a list of 5 values starting from New Year's Eve (#date(2011, 12, 31)) incrementing by 1 day(#duration(1, 0, 0, 0)).

List.Dates(#date(2011, 12, 31), 5, #duration(1, 0, 0, 0))

Result:

{
#date(2011, 12, 31),
#date(2012, 1, 1),
#date(2012, 1, 2),
#date(2012, 1, 3),
#date(2012, 1, 4)
}

Category

List.Generators