Forum Discussion
Excluding results from table
- Anonymous9 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:
Hi Sir_night,
If I understand you correctly, you should be able to firstly use the formula below to create a new measure, then use the measure as a visual level filter([Measure] is 0) to exclude rows where a movement key matches and reference matches. :smileyhappy:
Measure =
IF (
FIRSTNONBLANK ( Table1[Reference], 1 ) = 10014474
&& FIRSTNONBLANK ( Table1[MovementKey], 1 ) = "X-VOID-OCCP",
1,
0
)
Regards