Forum Discussion
Additional row for Matrix table
- Anonymous1 year ago
Thank you shafiz_p and Payeras_BI
Hi, Magesen_Muniand
Based on your description and the screenshots shown, I've created the following sample data:
If you want to add a column next to name, then you need to make a header table:
Sort the name column by sortID:
Create the following three measures:
ID = MAX('Table'[Staff ID])ProductValue = VAR _product = SELECTEDVALUE(HeaderTable[Name]) RETURN CALCULATE( SUM('Table'[Value]),'Table'[Product] = _product)Measure = SWITCH(TRUE(), SELECTEDVALUE(HeaderTable[Name]) = "Staff ID",[ID], [ProductValue] )Create a matrix:
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Jianpeng Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Magesen_Muniand ,
I understand you want to drag both 'Staff Name' and 'Staff ID' into the rows of the matrix, then change the layout to 'Tabular' and enable 'Repeat Row Headers' to display it as shown in your picture.