Forum Discussion

laurenkliever's avatar
laurenkliever
Regular Visitor
9 years ago
Solved

Filtering matrix rows by a column value

Can anyone help me with a solution to this? We have built an AR Aging report but need to filter rows based on the value of a column in a matrix.   Example: Table of values: Customer Name A...
  • laurenkliever's avatar
    laurenkliever
    9 years ago

    I've solved this with the help of Phil_Seamark comment above. Instead of using the bucket field in the columns section of the matrix, I've created a measure for each bucket using the below formulas and put that in the values:

     

    Current = calculate(sum(Table1[$Amount]),Table1[Bucket]="Current")

    30= calculate(sum(Table1[$Amount]),Table1[Bucket]="30")

     

    etc...

     

    Then used the Has 90 day Value filter, Has 30 day Value filter, etc. and created a tab for each bucket filter: Current filter, 30 filter, etc.