| Sum up the first 2 periods. | 
            *[#1]+1 | 
            5 | 
           
           
            | Display 2nd period and subsequent 4 periods. | 
            [#2]+4 | 
            1,2,3,5,10 | 
           
           
            | Sums up the 1st period and subsequent 3 periods and displays 1st period and subsequent 3 periods and then sums up the 5th period and subsequent 3 periods and displays 5th period and subsequent 3 periods. | 
            *1+3,1+3, *5+3,5+3 | 
            10,4,1,2,3,65,5,10,20,30 | 
           
           
            | Sum up the 2nd period and subsequent 4 periods (total of 5 periods) and sum them up. | 
            *[#2]+4 | 
            21 | 
           
           
            | Sums up 2nd period. | 
            *[#2] | 
            1 | 
           
           
            | Sum up all periods in the horizon. | 
            * | 
            75 | 
           
           
            | Display default value. | 
            [] | 
            8 | 
           
           
            | Display period FY19 W30. | 
            [FY19 W30] | 
            3 | 
           
           
            | Display FY19 W30 and subsequent 2 periods. | 
            [FY19 W30]+2 | 
            3,5,10 | 
           
           
            | Sum up the FY19 W30 period and subsequent 2 periods. | 
            *[FY19 W30]+2 | 
            18 | 
           
           
            | Sum up FY19 W30 and subsequent 2 periods and display FY19 W30 and subsequent 2 periods. | 
            *[FY19 W30]+2,[FY19 W30]+2 | 
            18,3,5,10 | 
           
           
            | Sums up the FY19 W27 period and subsequent 3 periods and displays FY19 W27 period and subsequent 3 periods and then sums up the FY19 W31 period and subsequent 3 periods and displays the FY19 W31 period and subsequent 3 periods. | 
            *[FY19 W27]+3, *[FY19 W31]+3 | 
            10,65 | 
           
           
            | Sums up the FY19 W27 period and subsequent 3 periods and then sums up the FY19 W31 period and subsequent 3 periods. | 
            *[FY19 W27]+3,[FY19 W27]+3, *[FY19 W31]+3,[FY19 W31]+3 | 
            10,4,1,2,3,65,5,10,20,30 | 
           
           
            | Display the FY19 W30 and FY19 W32 periods. | 
            [FY19 W30],[FY19 W32] | 
            3,10 |