Daily DAX : Day 9 COMBINEVALUES
A dax function that returns a scalar value that combines a series of expressions
Syntax
COMBINEVALUES(delimiter, expression1, expression 2, ..)
E.g. Combinevalues("," Employee(LastName), Employee(FirstName)
would combine the values in two columns sepearated by a comma as the delimiter : "Smith , John"
Comments
Post a Comment