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

Add fiscal week range in date table

Hi I have a date table wrote as below, I would like to have another column that gives me the explanation of those week numbers. 

Date Table = 
ADDCOLUMNS(
CALENDAR(DATE(YEAR(TODAY()) - 5, 1, 1),TODAY()),
"Day", DAY([Date]),
"Day Name", FORMAT([Date], "ddd"),
"Week Number",WEEKNUM([Date],2),
"Month Name", FORMAT([Date], "mmm"),
"Month Number", MONTH([Date]),
"Quarter", "Q" & ROUNDUP(MONTH([Date])/3,0),
"Quarter Year", FORMAT([Date], "yy") & "Q" & ROUNDUP(MONTH([Date])/3,0),
"Year", YEAR([Date]))

For example, the new column would gives me the explanation of date range for that week. Like (1/7/2019- 1/12/2019) appeared in new column for all 7 rows associates with the week number is 2.

 

4.PNG

 

Any help would be greatly appreciated!

 

Thanks a lot!!

1 REPLY 1
aTChris
Resolver I
Resolver I

You might find this post useful although it's within the query editor. 

https://community.powerbi.com/t5/Desktop/Min-Max-date-display-based-on-Week-number/m-p/669845#M32228...

 

Good luck!

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