Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
Today I found that its possibly to do a quick measure and choose text and concatenate which means that the Matrix (pivot) shows all values in the cell and not only the first. great.
But do anyone now how to get a row break between these values?
It shows the data like this in a cell
Value A, Value B, value C
I want
ValueA
Value B
Value C
I tried to use wrap text and narrov the columns but the textvalues has a dfferent length so it didnt work.
Br
Mattias
Solved! Go to Solution.
Hi @Mstrande
You may add a measure with UNICHAR function in matrix as below:
Measure = CONCATENATEX(Table1,Table1[Value],UNICHAR(10))
Regards,
Hi,
thanks for the answer, looks promising. My formula looks like below in a measured column where technical content level 2 is my values that need to be sorted with a row brake, line brake, "return" between each value. Can you guide how to implement your formula?
/Mstrande
Hi @Mstrande
Please replace the delimiter "," of CONCATENATEX Function in your formula with UNICHAR(10).
Measure = CONCATENATEX(Table1,Table1[Value],UNICHAR(10))
Regards,
Hi @Mstrande
You may add a measure with UNICHAR function in matrix as below:
Measure = CONCATENATEX(Table1,Table1[Value],UNICHAR(10))
Regards,
Hi @Mstrande
Please replace the delimiter "," of CONCATENATEX Function in your formula with UNICHAR(10).
Measure = CONCATENATEX(Table1,Table1[Value],UNICHAR(10))
Regards,
Thanks for this, so great.
/M
Hi,
thanks for the answer, looks promising. My formula looks like below in a measured column where technical content level 2 is my values that need to be sorted with a row brake, line brake, "return" between each value. Can you guide how to implement your formula?
/Mstrande