Forum Discussion

Alisea_MI's avatar
Alisea_MI
Icon for Resolver II rankResolver II
4 years ago
Solved

Time Intelligence calculation in weeks same period Current Year / Previous Year

Hi,

 

I need to set up calculations for the chosen period (last 13 weeks, last 26 weeeks, last 52 weeks) for the Current year and the same period for the previous year. Please note, that the period includes only full weeks, e.g. if today it is October, 7 2021, my "last 13 weeks period" for current year is from October ,1 2021 - July 5, 2021.  Invoice Date in my data set start with the last day of my current period, that is October, 1 2021.

 

I an trying to set it up using day granulatrity, since there's no week calculation (as far as I know).

 

The formula below works well for the current year:

CY =

var _start = MAX('Date'[Date])
var selected= SELECTEDVALUE('Period Parameter'[Period])
var period = IF(selected="Last 13 weeks",(13*7), IF(selected="Last 26 weeks", (26*7), IF(selected="Last 52 weeks", (52*7),9999)))
return CALCULATE(sum('InvoiceFact'[QuantityKFP]), DATESINPERIOD('Date'[Date], _start, -period, DAY))

 

Would really appreciate some help on setting it up for the same priod in previous year. For reference, my expected period for the last 13 weeks for previous year is: October, 2 2020 to July, 6 2020.

 

Thank you so much in advance!

 

  • Alisea_MI's avatar
    Alisea_MI
    4 years ago

    Thanks, AlexisOlson! The year has shifted to 2020, however, it took the whole October in 2020. What I needed was to shift today 1 year back, then start with the full week, before the "current date LY".

    I have tested doing separate calculation for the current date LY,  start and end date and a calculation that calculates the chosen period for the previous year. It works fine. Publish my formulas below, in case someone else is looking for a similar solution.

     

    Current Date LY = DATE(YEAR(MAX('Date'[Date]))-1, MONTH(MAX('Date'[Date])), DAY(MAX('Date'[Date])))
     
    Start Date =
    VAR _SelectedValue = SELECTEDVALUE('Period Parameter'[Period])
    VAR _RESULT =
    IF(_SelectedValue = "Last 52 weeks",
    DATE(YEAR([End Date])-1,MONTH([End Date]),DAY([End Date])+1),
    DATE(YEAR([End Date]),MONTH([End Date]),DAY([End Date])-'Period Parameter'[PeriodSelectedValue]))
    RETURN DATE(YEAR(_RESULT),MONTH(_RESULT),DAY(_RESULT)+1)

     

    End Date =
    VAR _DAYNUM =WEEKDAY('Beräknade mätvärden'[Current Date LY],2)
    VAR _END = DATE(YEAR(TODAY())-1,MONTH(TODAY()),DAY(TODAY()))
    VAR _DATE =
    SWITCH(
    TRUE(),
    [PeriodSelectedValue] = 91,_DAYNUM,
    [PeriodSelectedValue] = 182,_DAYNUM,
    [PeriodSelectedValue] = 365, _DAYNUM)
    RETURN DATE(YEAR(_END),MONTH(_END),DAY( _END-_DAYNUM))

     

    KFPInSelectedValue PY =
    var DaysToday = WEEKDAY(TODAY(), 1)
    var selected= SELECTEDVALUE('Period Parameter'[Period])
    var period = IF(selected="Last 13 weeks",(13*7)+ DaysToday, IF(selected="Last 26 weeks", (26*7) + DaysToday, IF(selected="Last 52 weeks", (52*7)+ DaysToday,9999)))
    return CALCULATE(sum('InvoiceFact'[QuantityKFP]), DATESBETWEEN('Date'[Date],[Start Date],[End Date]))

3 Replies

  • Try shifting your dates argument back a year.

    DATEADD ( DATESINPERIOD ( 'Date'[Date], _start, - period, DAY ), -1, YEAR )
    • Alisea_MI's avatar
      Alisea_MI
      Icon for Resolver II rankResolver II

      Thanks, AlexisOlson! The year has shifted to 2020, however, it took the whole October in 2020. What I needed was to shift today 1 year back, then start with the full week, before the "current date LY".

      I have tested doing separate calculation for the current date LY,  start and end date and a calculation that calculates the chosen period for the previous year. It works fine. Publish my formulas below, in case someone else is looking for a similar solution.

       

      Current Date LY = DATE(YEAR(MAX('Date'[Date]))-1, MONTH(MAX('Date'[Date])), DAY(MAX('Date'[Date])))
       
      Start Date =
      VAR _SelectedValue = SELECTEDVALUE('Period Parameter'[Period])
      VAR _RESULT =
      IF(_SelectedValue = "Last 52 weeks",
      DATE(YEAR([End Date])-1,MONTH([End Date]),DAY([End Date])+1),
      DATE(YEAR([End Date]),MONTH([End Date]),DAY([End Date])-'Period Parameter'[PeriodSelectedValue]))
      RETURN DATE(YEAR(_RESULT),MONTH(_RESULT),DAY(_RESULT)+1)

       

      End Date =
      VAR _DAYNUM =WEEKDAY('Beräknade mätvärden'[Current Date LY],2)
      VAR _END = DATE(YEAR(TODAY())-1,MONTH(TODAY()),DAY(TODAY()))
      VAR _DATE =
      SWITCH(
      TRUE(),
      [PeriodSelectedValue] = 91,_DAYNUM,
      [PeriodSelectedValue] = 182,_DAYNUM,
      [PeriodSelectedValue] = 365, _DAYNUM)
      RETURN DATE(YEAR(_END),MONTH(_END),DAY( _END-_DAYNUM))

       

      KFPInSelectedValue PY =
      var DaysToday = WEEKDAY(TODAY(), 1)
      var selected= SELECTEDVALUE('Period Parameter'[Period])
      var period = IF(selected="Last 13 weeks",(13*7)+ DaysToday, IF(selected="Last 26 weeks", (26*7) + DaysToday, IF(selected="Last 52 weeks", (52*7)+ DaysToday,9999)))
      return CALCULATE(sum('InvoiceFact'[QuantityKFP]), DATESBETWEEN('Date'[Date],[Start Date],[End Date]))
  • AilleryO's avatar
    AilleryO
    Icon for Memorable Member rankMemorable Member

    Hi,

     

    Sorry if it sounds silly, but did you try SAMEPERIODLASTYEAR ? or PARALLELPERIOD ?

    Let us know...