GENERATE is a DAX function that performs a cross join between two tables, evaluating the second table for each row of the first.
Syntax
GENERATE(
Table1,
Table2
)
Argument | Properties | Description |
---|---|---|
Table1 | The base table in Generate. | |
Table2 | A table expression that will be evaluated for each row in the first table. |