Forum Discussion
StoryofData
3 years agoHelper III
Rows to List
Hello, How do I convert my table into a list based on selected values? This is what I have Identification Number Category All Other columns A-123 Apple A-123 Mango A-...
- 3 years ago
If this is in DAX, you can use the CONCATENATEX function to combine; something like:
CategoryCombined = CONCATENATEX(CALCULATETABLE('Table', ALLEXCEPT('Table', 'Table'[Identification Number])), 'Table'[Category], ", ")
vicky_
3 years agoSuper User
If this is in DAX, you can use the CONCATENATEX function to combine; something like:
CategoryCombined = CONCATENATEX(CALCULATETABLE('Table', ALLEXCEPT('Table', 'Table'[Identification Number])), 'Table'[Category], ", ")
StoryofData
3 years agoHelper III
thank you so much!