DATATABLE is a DAX function that returns a table with data defined inline.
Syntax
DATATABLE(
[ name, ... ],
[ type, ... ],
data
)
| Argument | Properties | Description |
|---|---|---|
| name | Repeatable | A column name to be defined. |
| type | Repeatable | A type name to be associated with the column. |
| data | The data for the table. |