I would like to create a visual priority matrix in Power BI, the minimum I would like to do is this :
So I put "Business Value" in Row; "Complexity" in Columns and the "ID" in Values. However I obtain this :
In values I only have the possibility to display : First ID, Last ID, Count & Count (distinct) I dont' have the possibile to list all values so it looks like the picture I attached.
Could you support ?
I would like to create a visual priority matrix in Power BI, the minimum I would like to do is this :
So I put "Business Value" in Row; "Complexity" in Columns and the "ID" in Values. However I obtain this :
In values I only have the possibility to display : First ID, Last ID, Count & Count (distinct) I dont' have the possibile to list all values so it looks like the picture I attached.
Could you support ?
Share Improve this question asked Feb 7 at 9:41 morgmorg 1,1954 gold badges18 silver badges38 bronze badges 1- Was your problem solved? – davidebacci Commented yesterday
1 Answer
Reset to default 0Create a measure and use that in the values. Something like:
CONCATENATEX(yourTable,yourcolumn, ",")
or
CONCATENATEX(yourTable,yourcolumn, UNICHAR(10))