Forum Discussion
Matrix Visual To show All values for Text Field
Hi Xiaoxin,
I have found this solution given by you in other post. This solution is great but it results into giving me the rows value in one row only as shown:
This was the test data but in my case volume of data is huge and even there are many columns which should come. I was thinking of using slicers for that. But if currently in Power BI values can't move to rows then is it possible in Excel Power Pivot? Any idea?
Thanks.
Hi Anonymous ,
I had a similar need where I had to show several lines of text in a single cell. What I did was using UNICHAR(10) as the CONTATENATEX delimiter instead of a comma. In addition, for the numeric values I used a FORMAT function to preserve the proper formatting.
Example:
CONCATENATEX(AllDataTable,IF(ISERROR(VALUE([Related_Details])),[Related_Details],FORMAT([Related_Details],"#,##0")),UNICHAR(10))
I'm a PBI apprentice, so I hope it helps.
Best regards.