Forum Discussion

Jacy's avatar
Jacy
Frequent Visitor
9 years ago
Solved

LastDate minus 1

Good morning, I need to add the value of a measure to the maximum date of the base minus one day. As I developed it does not work, it follows $ Recipe D = CALCULATE ([Recipe]; LASTDATE ('Data Link' - 1).
In addition I need to add the accumulated of the month that is smaller than the maximum date selected.

  • Hello there. Even I didn't understand the cumulative part, i think this can help.

     

    Recipe = CALCULATE(SUM('Table'[NumberRecipe]); DATEADD(LASTDATE('Table'[Date]); -1;DAY)) 

     

    Regards,

     

     

4 Replies

  • Hello there. Even I didn't understand the cumulative part, i think this can help.

     

    Recipe = CALCULATE(SUM('Table'[NumberRecipe]); DATEADD(LASTDATE('Table'[Date]); -1;DAY)) 

     

    Regards,

     

     

    • Jacy's avatar
      Jacy
      Frequent Visitor

      Hello, this function works but only on a separate object, on a graph that has the company size as an example, it takes the maximum date minus one of each company. Ex - Company x has last move day 09-06-2017 and company y has last on 08-06-2017 when playing the function of maximum date in this chart he picks up 9 in company x and 8 in company y. But the right thing is to take the last date ... day 9. the same logic of maximum date-1.

  • Jacy's avatar
    Jacy
    Frequent Visitor

    Good morning, I need to add the value of a measure to the maximum date of the base minus one day. As I developed it does not work, it follows $ Recipe D = CALCULATE ([Recipe]; LASTDATE ('Data Link' - 1).
    In addition I need to add the accumulated of the month that is smaller than the maximum date selected.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Jacy,

     

    >>In addition I need to add the accumulated of the month that is smaller than the maximum date selected.

    You can try to use TOTALYTD function to calculate the accumulated value.

     

    Referencelink:

    TOTALMTD Function (DAX)

     

    Regards,

    Xiaoxin Sheng