Forum Discussion

vsteinbahs's avatar
vsteinbahs
Helper I
6 years ago
Solved

Filtering for rows with column value increase only

Hi, I'm trying to figure out how to display rows in matrix visual where column values are only going up.  I've tried visual filters, but it won't do the trick.  Do I need to create a new measure for...
  • v-zhenbw-msft's avatar
    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
    _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.