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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Aryaja96
Frequent Visitor

Date ranges

Hello, i have a calendar table like this, my date starts from 1/1/21 and ends on 31/12/2022.

Screenshot 2022-06-14 160216.png

what i want to do is create a separate column that groups my date according to the week that they belong in. for example

if i select a particular week range, like 2nd to 3rd week, the date on the horizontal axis shows only the dates belonging to the particular range like( 2nd to 3rd week should show dates from 4/1/2021-17/1/2021. 

Screenshot 2022-06-14 163830.png

like this, it has nothing in it right now but i just wanted to show what i was thinking of doing. 

is there any way to do that?

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Aryaja96 ,

 

Please create these.

Table.

 

Table = 
DISTINCT (
    SELECTCOLUMNS (
        CALENDAR ( MIN ( 'Calendar'[Date] ), MAX ( 'Calendar'[Date] ) ),
        "Start", WEEKNUM ( [Date], 2 ),
        "End", WEEKNUM ( [Date], 2 ) + 1
    )
)

 

Calculated column.

 

Column = [Start] & " to " & [End] & " Week"

 

Measure.

 

Measure = 
VAR _weeknum = MAX('Calendar'[Week of Year])
VAR _start = MAX('Table'[Start])
VAR _end = MAX('Table'[End])
VAR _result = IF(_weeknum>=_start&&_weeknum<=_end,1)
RETURN
_result

 

Configure filters.

vcgaomsft_1-1655432996703.png

Attached PBIX file for reference.

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Aryaja96 ,

 

Please create these.

Table.

 

Table = 
DISTINCT (
    SELECTCOLUMNS (
        CALENDAR ( MIN ( 'Calendar'[Date] ), MAX ( 'Calendar'[Date] ) ),
        "Start", WEEKNUM ( [Date], 2 ),
        "End", WEEKNUM ( [Date], 2 ) + 1
    )
)

 

Calculated column.

 

Column = [Start] & " to " & [End] & " Week"

 

Measure.

 

Measure = 
VAR _weeknum = MAX('Calendar'[Week of Year])
VAR _start = MAX('Table'[Start])
VAR _end = MAX('Table'[End])
VAR _result = IF(_weeknum>=_start&&_weeknum<=_end,1)
RETURN
_result

 

Configure filters.

vcgaomsft_1-1655432996703.png

Attached PBIX file for reference.

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

hey @Anonymous that totally worked! thank you for the help! 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors