GENERATESERIES is a DAX function that returns a table with a single column containing a sequential series of values from a start to an end value.
Syntax
GENERATESERIES(
StartValue,
EndValue,
IncrementValue
)
| Argument | Properties | Description |
|---|---|---|
| StartValue | The start value of the column. | |
| EndValue | The end value of the column. | |
| IncrementValue | Optional | The increment value of the column. |