DISTINCT is a DAX function that returns a one-column table with unique values from a specified column or a table with unique combinations of multiple columns.
Syntax
DISTINCT( ColumnNameOrTableExpr )
| Argument | Properties | Description |
|---|---|---|
| ColumnNameOrTableExpr | The column (or table expression) from which unique values (or combination of values) are to be returned. |