Forum Discussion

Sir_night's avatar
Sir_night
Frequent Visitor
9 years ago
Solved

Excluding results from table

So i have a table which has a multi select date filter But i want exculed rows where a movment key matchs and refrence matchs  
  • Anonymous's avatar
    Anonymous
    9 years ago

    You could create a column in your dataset called CombinedKay, which is just the Reference and MovementKey combined:

    Create a new measure called DuplicateCount. This will get the count over all time for the CombinedKeyCombo. You may have to change ALL to ALLSELECTED if you are using a slicer on the SnapshotDate:

     

    DuplicateCount = CALCULATE(COUNT(Sheet1[CombindedKey]), all(Sheet1[SnapshotDate]))

     

    Then, in your grid on the report, add a visual filter where DuplicateCount = 1:

     

    All records:

    Filtered Records: