Search code examples
powerbidaxpowerbi-desktopmeasure

How to show only column subtotal in power bi table?


I have a table like this and I would like to see only the subtotal column. Is this even possible in power bi ?


Solution

  • Yes, it is possible. For your measure, you need to write it in the form:

    IF(HASONEVALUE('Table'[ColumnwithC]), BLANK(), [yourmeasure])