Forum Discussion

User38690's avatar
User38690
Regular Visitor
2 years ago
Solved

Remove values from one column in matrix scope

Hello,  Is there some way that not show one column values in matrix last row? I have matrix that shows how much work plan to do and how it really done, the last row of the matrix show the worker. Ho...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi User38690 ,

    Please try this way.
    Use these DAXs to create measure:

     

     

    _Plan = 
    VAR _sum = SUM('Table'[Plan])
    RETURN
    IF(
        ISFILTERED('Table'[Worker]),
        BLANK(),
        _sum
    )

     

     

    Put these measures into the matrix, and the final output is as below:

     


    Best Regards,
    Dino Tao
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi User38690 ,

    Please just put the measure "_Plan" and the column [Done] into the matrix. The output is as below:

    It will automatically show only the workers that have data in the Done.

    If the problem still exists, it's not the measure, it's on your data model. This would require you to provide the pbix file for me to know exactly what the problem is. Thank you!

    Best Regards,
    Dino Tao
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.