Forum Discussion
Matrix or table with subtotal on one column
- Anonymous4 years ago
Hi markpatton
Power BI doesn't support you to turn off total from column in value section. You see here I move Vender and Date into Value section in Matrix.
I suggest you to add the columns as a level in rows section like before. Or you can create measures instead of adding columns in values section.
Measures:
M_Vendor = IF(HASONEVALUE('Table'[Line Description]),MAX('Table'[Vendor]),BLANK())M_Date = IF(HASONEVALUE('Table'[Line Description]),MAX('Table'[Date]),BLANK())Result is as below. In right side, above one is like before, below one is created by measure.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi markpatton
Turn on "Per row level" function in "Subtotal" in Format, and then turn off the subtotal in the level which you don't need.
Step 1:
Step 2:
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Now, I donot get to turn off row level for particular column in power bi.