Forum Discussion

GiangLe's avatar
GiangLe
Icon for Helper I rankHelper I
8 years ago
Solved

Year to date without standard date table

Hi everyone, I've struggled with this problem for few days already and would be glad if someone can help me out :). I'm working a dataset without a standard date column (as you can see in the pho...
  • mattbrice's avatar
    8 years ago
    YTD Measure :=
    CALCULATE (
        SUM ( Table[Sales] ),
        FILTER (
            ALL ( Table[Yearmonth] ),
            Table[Yearmonth] <= MAX ( Table[Yearmonth] )
        )
    )

     But if measure needs to cross "Years", you'll need a separate column for Year and add to filter statement. 

     

    Or do like suggested and convert your Yearmonth column to a date, then use time intelligence.