Forum Discussion
Anonymous
4 years agoNot applicable
Help with Calendar Week Numbers - No Date
Hello, I have a dataset that provides the calendar week number (i.e. 1 thru 52) and the year. With this data I am facing two issues. First, I have visuals with the week numbers as the x-axis val...
- 4 years ago
Hi Anonymous ,
Based on your description, I have created a simple sample:
Please try:
Column = VAR _a = AVERAGEX ( FILTER ( 'Rolling Table', [Index] <= EARLIER ( 'Rolling Table'[Index] ) && [Index] > EARLIER ( 'Rolling Table'[Index] ) - 4 && [Year] = EARLIER ( 'Rolling Table'[Year] ) ), [CFS] ) VAR _b = IF ( [Index] >= 4, _a, AVERAGEX ( FILTER ( 'Rolling Table', ( [Year] * 100 + [Index] ) > ( ( EARLIER ( 'Rolling Table'[Year] ) - 1 ) * 100 + 48 + EARLIER ( 'Rolling Table'[Index] ) ) && ( [Year] * 100 + [Index] ) <= ( EARLIER ( 'Rolling Table'[Year] ) * 100 + EARLIER ( 'Rolling Table'[Index] ) ) ), [CFS] ) ) RETURN _bchange the format:
Output:
Then apply it to the visual:
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Syk
4 years agoResident Rockstar
You can put both the Year and Week number in the x-axis then expand the data by clicking the highlighted button in the screenshot. Make sure to sort your axis by the year/week number and set to ascending to see it as expected!
Anonymous
4 years agoNot applicable
Thank you! This works perfectly. I do still have a remaining issue to solve in my initial post, so I am unsure if I shold mark this as a solution.