Forum Discussion
WinterMist
Impactful Individual
2 years agoDAX Comma Separated Product Values Within Table Visual
Hello Community - The test PBIX is located here: https://drive.google.com/file/d/1FoKbRlzzW378owG71w_qwDVfkxCwLP9x/view?usp=sharing The following table visual exists, with 4 rows for 202...
- 2 years ago
Try this:
List of Product Names = CALCULATE( CONCATENATEX( filter( all('Product'), 'Product'[ProductKey] in VALUES('Fact Sales'[ProductKey])), 'Product'[Product Name], ", ", 'Product'[Product Name], asc))
ThxAlot
Super User
2 years agoConcat =
CONCATENATEX(
CALCULATETABLE( VALUES( 'Product'[Product Name] ), 'Fact Sales' ),
'Product'[Product Name],
", "
)