GENERATEALL is a DAX function that performs a cross join between two tables, including rows where the second table is empty.
Syntax
GENERATEALL(
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. |