List.Durations
List.Durations(start as duration, count as number, step as duration) as list
Returns a list of count duration values, starting at start and incremented by the given duration step.
Create a list of 5 values starting 1 hour and incrementing by an hour.
List.Durations(#duration(0, 1, 0, 0), 5, #duration(0, 1, 0, 0))
| 01:00:00 |
| 02:00:00 |
| 03:00:00 |
| 04:00:00 |
| 05:00:00 |
Show: