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! Learn more

Reply
MurugeshC
Helper I
Helper I

Need help in creating a Weekly column as shown in the pic

Hello All,


I want to create a weekly column (every 7 days) which should show the number of projects handled every week (Monday to Sunday). 

 

Please check the attached screenshot of the sample fields in excel. I tried using the matrix table with the date field but couldn't get the desired result. 

 

Your help is highly appreciated. Thanks.

 

MurugeshC_0-1606308915532.png

 

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @MurugeshC ,

Based on your description, you can create this calculated column to create a [weekly beginning] column:

Week beginning =
VAR w =
    WEEKNUM ( 'Table'[Date], 2 )
RETURN
    CALCULATE (
        MIN ( 'Table'[Date] ),
        FILTER ( ALL ( 'Table' ), WEEKNUM ( 'Table'[Date], 2 ) = w )
    )

Create this measure to count values for each week:

Count =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Week beginning] IN DISTINCT ( 'Table'[Week beginning] )
    )
)

 re.png

Attached a sample file the below, hopes to help you.

 

Best Regards,
Community Support Team _ Yingjie Li
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

4 REPLIES 4
v-yingjl
Community Support
Community Support

Hi @MurugeshC ,

Based on your description, you can create this calculated column to create a [weekly beginning] column:

Week beginning =
VAR w =
    WEEKNUM ( 'Table'[Date], 2 )
RETURN
    CALCULATE (
        MIN ( 'Table'[Date] ),
        FILTER ( ALL ( 'Table' ), WEEKNUM ( 'Table'[Date], 2 ) = w )
    )

Create this measure to count values for each week:

Count =
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Week beginning] IN DISTINCT ( 'Table'[Week beginning] )
    )
)

 re.png

Attached a sample file the below, hopes to help you.

 

Best Regards,
Community Support Team _ Yingjie Li
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

@MurugeshC , In you date table/table you can create week start like

 

Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)

 

or

 

Week Start date = format('Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1,"DD-MON")

 

refer Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...

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

@amitchandak Thank you for your solution, Amit.

I am able to create the weekly column from the Dax formula. Now, I want to sort the columns in ascending order. Please refer the screenshot and requesting you to share your input. I appreciate your help.

 

Thanks.

MurugeshC_0-1606330105672.png

 

Can someone help me with this? Thanks

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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