Reputation: 5
Let's assume that i have the following:
I want to show that data in a table like that:
Is there a way to do that?
Upvotes: 0
Views: 48
Reputation: 4477
You can create a measure like this:
MyMeasure = CONCATENATEX(MyTable, MyTable[Column1], "|")
Upvotes: 0
Reputation: 12345
Try this:
New Table =
SUMMARIZE(
'Table',
'Table'[Column2],
"Column1", CONCATENATEX('Table','Table'[Column1], "|")
)
Upvotes: 1