Forum Discussion
Showing multiple text values in a matrix
- Anonymous9 years ago
Hi maronis,
Create a measure in your table using DAX below.
Measure = CONCATENATEX (VALUES(Table1[Employee Name]), Table1[Employee Name], ", ")
Then create Matrix visual as shown in the following screenshot and you will get expected result.
Thanks,
Lydia Zhang
Hi maronis,
Could you please share sample data of your table and post expected result here?
Thanks,
Lydia Zhang
- maronis9 years agoHelper I
Absolutely. So I'm hoping to take data that looks like the below where there is a Performance rating and Potential value for each employee:
And the output should be a matrix that looks something like below, where Performance is on one axis, Potential is on another axis, and all values for each box in the matrix are populated.
Thanks so much for your help!
- Anonymous9 years agoNot applicable
Hi maronis,
Create a measure in your table using DAX below.
Measure = CONCATENATEX (VALUES(Table1[Employee Name]), Table1[Employee Name], ", ")
Then create Matrix visual as shown in the following screenshot and you will get expected result.
Thanks,
Lydia Zhang- maronis9 years agoHelper I
Awesome, thanks so much!