Forum Discussion
Concatenatex with Distinct column values
- 8 years ago
Hey There bugs84,
I think this might help:
ListProductTypes = CALCULATE(CONCATENATEX(VALUES('Table'[ProductType]),'Table'[ProductType],","))
Credit Goes to Data and Analytics with Dustin Ryan:
https://sqldusty.com/2016/06/29/5-more-power-bi-tips/
According to Dusting Ryan:
Cited References:
Dustin, Ryan. 5 More PowerBI Tips. Data and Analytics with Dustin Ryan, 2016. Web. 17 January 2018.
Hi all,
I'm looking for the same...
ListProductTypes = CONCATENATEX(Table;Table[ProductType];", ")
how can I get only distinct ProductType values?
Hey There bugs84,
I think this might help:
ListProductTypes = CALCULATE(CONCATENATEX(VALUES('Table'[ProductType]),'Table'[ProductType],","))
Credit Goes to Data and Analytics with Dustin Ryan:
https://sqldusty.com/2016/06/29/5-more-power-bi-tips/
According to Dusting Ryan:
Cited References:
Dustin, Ryan. 5 More PowerBI Tips. Data and Analytics with Dustin Ryan, 2016. Web. 17 January 2018.
- AriSultani2 years agoRegular Visitor
Unfortunately, it does not work for me; I use the following code, and works perfectly.
CONCATENATEX(DISTINCT(Table[The Column]),Table[The Column],", ") - zapppsr8 years agoKudo Collector
Very good, thanks!
- Zyg_D6 years agoContinued Contributor
markdy wrote:Hey There bugs84,
I think this might help:
ListProductTypes = CALCULATE(CONCATENATEX(VALUES('Table'[ProductType]),'Table'[ProductType],","))
Credit Goes to Data and Analytics with Dustin Ryan:
https://sqldusty.com/2016/06/29/5-more-power-bi-tips/
According to Dusting Ryan:
Cited References:
Dustin, Ryan. 5 More PowerBI Tips. Data and Analytics with Dustin Ryan, 2016. Web. 17 January 2018.
This does not work in the OP's case
- EduSurveys6 years agoAdvocate II
markdy , this solution works for me!