SELECTCOLUMNS is a DAX function that returns a table with selected columns from an existing table and new columns defined by DAX expressions.
Syntax
SELECTCOLUMNS(
Table,
[ Name, ... ],
[ Expression, ... ]
)
Argument | Properties | Description |
---|---|---|
Table | The table from which columns are selected. | |
Name | Optional, Repeatable | The name of the new column to be added. |
Expression | Repeatable | The expression for the new column to be added. |