Forum Discussion
Filtering for rows with column value increase only
- 6 years ago
Hi vsteinbahs ,
We can create a measure and put it in Filter on this visual.
1. Create a calculate column to get the difference with the next day’s value.
increase = var _x = CALCULATE(SUM('Table'[value]),FILTER('Table',EARLIER('Table'[Date])='Table'[Date]+1&&EARLIER('Table'[Student name])='Table'[Student name])) return IF(ISBLANK(_x),BLANK(),'Table'[value]-_x)2. Then we need to create a measure and put it in Filter on this visual.
Measure = var _min = CALCULATE(MIN('Table'[increase]),FILTER(ALLSELECTED('Table'),'Table'[Student name]=MAX('Table'[Student name]))) return _minIf it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi vsteinbahs ,
We can create a measure and put it in Filter on this visual.
1. Create a calculate column to get the difference with the next day’s value.
increase =
var _x = CALCULATE(SUM('Table'[value]),FILTER('Table',EARLIER('Table'[Date])='Table'[Date]+1&&EARLIER('Table'[Student name])='Table'[Student name]))
return
IF(ISBLANK(_x),BLANK(),'Table'[value]-_x)
2. Then we need to create a measure and put it in Filter on this visual.
Measure =
var _min = CALCULATE(MIN('Table'[increase]),FILTER(ALLSELECTED('Table'),'Table'[Student name]=MAX('Table'[Student name])))
return
_min
If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?
BTW, pbix as attached.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- vsteinbahs6 years agoHelper I
I tried to apply the same calculated column to another slightly different table using the same syntax you provided, but it won't populate values. Any ideas what could be wrong?