Forum Discussion
Anonymous
4 years agoNot applicable
Comma separated list
Hi all, I am having trouble processing data in power BI. Can you help me make all of FABRIC CODE each OUT DOCUMENT become a row (the fabric code a comma separated list). I am very grateful for th...
- 4 years ago
Anonymous
maybe you can try this
Measure = CONCATENATEX(values('Table'[farbric code]), 'Table'[farbric code],",") - 4 years ago
I missed this reply.
maybe you can try to change to ISFILTERED('Table'[month])
changed the doc column to month column
ryan_mayu
4 years agoSuper User
Anonymous
still can't reproduce the issue.
is it possbile to share the pbix file after removing sensitive data?
Anonymous
4 years agoNot applicable
do you have a way to not have to show its total on the report table?
- ryan_mayu4 years agoSuper User
turn off the total
or
update the DAX
Measure = if(ISFILTERED('Table'[DOC]), CONCATENATEX(VALUES('Table'[farbic code]),'Table'[farbic code],","))- Anonymous4 years agoNot applicable
wow, I'll use the 2nd method... because I also need to show total of some other columns.
you are really cool
thank you!!!
- ryan_mayu4 years agoSuper User
you are welcome
- Anonymous4 years agoNot applicable
I don't know why I use this formula it's not run
Measure = if(ISFILTERED('Table'[DOC]), CONCATENATEX(VALUES('Table'[farbic code]),'Table'[farbic code],","))- ryan_mayu4 years agoSuper User
I missed this reply.
maybe you can try to change to ISFILTERED('Table'[month])
changed the doc column to month column