Forum Discussion
Anonymous
3 years agoNot applicable
FILTER on Measure column
Hello everyone, I am trying to find a solution for following use case: I have a table where the difference between two values with time-intelligence is calculated by a measure: First measure ...
- Anonymous3 years ago
Found a possible solution by changing your measure into this:
Changed =COUNTROWS (FILTER (ALL ( 'Table'[Price] ), [DeltaPrice] <> 0))It works by returning 1 and afterwards when set in the visual as a filter.Thanks for your support!
Anonymous
3 years agoNot applicable
tamerj1
Community Champion
3 years agoAnonymous
Place the following measure in the filter pane of the matrix, select is not balnk and apply the filter.
Changed =
COUNTROWS (
FILTER (
VALUES ( 'Table'[Article] ),
CALCULATE ( [DeltaPrice], ALL ( [Date] ) ) <> 0
)
)- Anonymous3 years agoNot applicable
Hi tamerj1
thanks, but does not work, because the value of "Changed" is always 1.
I have also tried this with an if statement by checking the difference between the two values, but the filter did not work. Any other idea?