Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

YOY BASIC PLEASE

Hi all,   I require your support. it turns out that I have a table in a database where I must compare the difference between years. I do not have a date table because it is not really necessary bec...
  • v-jiascu-msft's avatar
    7 years ago

    Hi Anonymous ,

     

    A date table is necessary. You can use some Time Intelligence functions like sameperiodlastyear-function-dax. Then everything will be easy.

     

    currentRev = sum('table'[Rev])
    lastyearRev =
    CALCULATE ( SUM ( 'table'[Rev] ), SAMEPERIODLASTYEAR ( 'calendar'[Date] ) )
    

     

     

    Best Regards,