Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Difference between two rows if there is one column the same

Hi all,   I'm trying to create an overview from our accounting system with the outstanding items of our debtors. For this we have a view that has already collected all data. So now I actually hav...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi  

    Please try this measure.

    Filter = 
    VAR _FatNum =CALCULATETABLE( VALUES('Table'[OspFactuurNummer]),FILTER('Table','Table'[OspOpenstaand] = 0))
    Return
    IF(MAX('Table'[OspFactuurNummer]) in _FatNum,0,1)

    Build a matrix as your screenshot , add this measure into filter field and set this measure to show items when value = 1.

    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.