Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Syntax
List.Durations(
start as duration,
count as number,
step as duration
) as list
About
Returns a list of count duration values, starting at start and incremented by the given duration step.
Example
Create a list of 5 values starting with 1 hour and incrementing by an hour.
Usage
List.Durations(#duration(0, 1, 0, 0), 5, #duration(0, 1, 0, 0))
Output
{
#duration(0, 1, 0, 0),
#duration(0, 2, 0, 0),
#duration(0, 3, 0, 0),
#duration(0, 4, 0, 0),
#duration(0, 5, 0, 0)
}