Forum Discussion
thhmez7
Helper III
4 years agoDAX Measure: Filter in concatenatex
Hi, I'd like to filter the concatenated column value in the DAX statement with CONCATENATEX, in this example: Only Assignments with Relevant = Y should be shown for each account. So in the e...
tamerj1
Community Champion
4 years agoHi thhmez7
Please try
Assignment Measure =
VAR FilteredTable =
FILTER ( Assignm, Assignm[Relevant] = "Y" )
VAR Result =
CONCATENATEX (
FilteredTable,
Assignm[Assignment],
";" & UNICHAR ( 10 ),
Assignm[Assignment], ASC
)
RETURN
Resultthhmez7
Helper III
4 years agoThank you, it works.