Forum Discussion
Help with Calendar Week Numbers - No Date
- 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.
Hi Anonymous ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Refer to:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
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.
The question regarding the visual was solved. However, I am still searching for support on my question regarding the DAX in my measure.