Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to display rolling 12 weeks in order, e.g. week 42- 1?

Need current stacked column chart to display week 42 - 1, week 43-2, etc.  a rolling week display.  X axis is week. 

 

Data set is:

Week  Year    Expected TAT day    % On Time

42        2018      1                               95.00%

43        2018      1

44

...

1          2019       1

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Anonymous 

 

Do you have a datetime table? If you have, I think you can use dateadd formula to find out 12 weeks ago or 12 weeks later's value. Then you can get table like below. Then you can drag two values and week 1 is next to week 42, week 2 is next to 43.

 

Thanks

 

weeksvalue12 weeks later value
4214
4325
4436




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

If below image is what you want, then, please refer to the measures. If not, please show us your desired output, as mentioned in this link.

 

1.PNG

TY =
CALCULATE (
    SUM ( 'Week Value'[Value] ),
    FILTER (
        ALLSELECTED ( 'Week Value' ),
        'Week Value'[Year]
            = SELECTEDVALUE ( 'Week Value'[Year] ) + 1
            && 'Week Value'[Week]
                = SELECTEDVALUE ( 'Week Value'[Week] ) - 41
    )
)

LY =
CALCULATE (
    SUM ( 'Week Value'[Value] ),
    FILTER (
        ALLEXCEPT ( 'Week Value', 'Week Value'[Week] ),
        'Week Value'[Year]
            = YEAR ( TODAY () ) - 1
    )
)

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
ryan_mayu
Super User
Super User

@Anonymous 

 

Do you have a datetime table? If you have, I think you can use dateadd formula to find out 12 weeks ago or 12 weeks later's value. Then you can get table like below. Then you can drag two values and week 1 is next to week 42, week 2 is next to 43.

 

Thanks

 

weeksvalue12 weeks later value
4214
4325
4436




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors