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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Anonymous
Not applicable

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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

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]) ))

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors