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
hamzashafiq
Kudo Collector
Kudo Collector

Same Week Numbers in Two Months

hamzashafiq_0-1666952900137.png

Hi All,

 

I have created a Week Number column using the following DAX
Week Num= WEEKNUM('DateTable'[Date],2) to calculate the 4 week running average. The problem is that the Week 6 is coming in both Januray and February causing issues in my rolling average calculation. Is there any way we can make the week number unique?

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @hamzashafiq ,

Please create the measures as below to get the 4 weeks rolling average, you can find the details in the attachment.

Measure = SUM('Table'[Billed Amount])
4 Week Rolling Average = 
VAR _selweek =
    SELECTEDVALUE ( 'DateTable'[Week Num] )
VAR _count =
    IF ( _selweek <= 3, _selweek, 4 )
RETURN
    DIVIDE (
        SUMX (
            FILTER (
                ALLSELECTED ( 'DateTable' ),
                'DateTable'[Week Num] >= _selweek - 3
                    && 'DateTable'[Week Num] <= _selweek
            ),
            [Measure]
        ),
        _count
    )

yingyinr_0-1667205006045.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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

View solution in original post

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @hamzashafiq ,

Please create the measures as below to get the 4 weeks rolling average, you can find the details in the attachment.

Measure = SUM('Table'[Billed Amount])
4 Week Rolling Average = 
VAR _selweek =
    SELECTEDVALUE ( 'DateTable'[Week Num] )
VAR _count =
    IF ( _selweek <= 3, _selweek, 4 )
RETURN
    DIVIDE (
        SUMX (
            FILTER (
                ALLSELECTED ( 'DateTable' ),
                'DateTable'[Week Num] >= _selweek - 3
                    && 'DateTable'[Week Num] <= _selweek
            ),
            [Measure]
        ),
        _count
    )

yingyinr_0-1667205006045.png

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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

@hamzashafiq , You can have month week in one two way in your date table

 

WeekDay = WEEKDAY([Date],2) //monday
Start of Week = [Date] -[WeekDay]+1 //monday
Month Week = QUOTIENT(DATEDIFF(Minx(FILTER('Date',[Start Month]=EARLIER([Start Month])),'Date'[Start of Week]),[Date],DAY),7)+1

min week start of month = minx(filter('Date',[Month Year] =earlier([Month Year])),[Week Start date])
week of month = datediff([min week start of month],[date],Week)+1

 

also have month rank

Month Rank = RANKX(all('Date'),'Date'[Month Start Date],,ASC,Dense)

 

This Month Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Month Rank]=max('Date'[Month Rank]) && 'Date'[week of month]=max('Date'[week of month]) ))
Last Month Same Week = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Month Rank]=max('Date'[Month Rank])-1 && 'Date'[week of month]=max('Date'[week of month]) ))

 

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.