CONCATENATEX is a DAX function that evaluates an expression for each row in a table and returns the concatenation of those values into a single string, separated by a specified delimiter.
Syntax
CONCATENATEX(
Table,
Expression,
Delimiter,
[ OrderBy_Expression, ... ],
[ Order, ... ]
)
Argument | Properties | Description |
---|---|---|
Table | The table containing the rows for which the expression will be evaluated. | |
Expression | The expression to be evaluated for each row of the table. | |
Delimiter | Optional | The delimiter to be concatenated with expression. |
OrderBy_Expression | Optional, Repeatable | Expression to be used for sorting the table. |
Order | Optional, Repeatable | The order to be applied. 0/FALSE/DESC – descending; 1/TRUE/ASC – ascending. |