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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Rsanjuan
Advocate III
Advocate III

Display current week time frame

Hi,

 

I have a date table as follows:

 

Date = ADDCOLUMNS(CALENDAR(DATE(2000,1,1),DATE(2025,12,31)),
"DateAsInteger", FORMAT ( [Date], "YYYYMMDD" ),
"Year", YEAR ( [Date] ),
"Monthnumber", FORMAT ( [Date], "MM" ),
"YearMonthnumber", FORMAT ( [Date], "MM YYYY" ),
"YearMonthShort", FORMAT ( [Date], "mmm YYYY" ),
"MonthNameShort", FORMAT ( [Date], "mmm" ),
"MonthNameLong", FORMAT ( [Date], "mmmm" ),
"DayOfWeekNumber", WEEKDAY ( [Date] ),
"DayOfWeek", FORMAT ( [Date], "dddd" ),
"DayOfWeekShort", FORMAT ( [Date], "dddd" ),
"Quarter", "Q" & FORMAT ( [Date], "Q" ),
"YearQuarter", FORMAT ( [Date], "YYYY" ) & "/Q" & FORMAT ( [Date], "Q" )
)

 

I would like to display the current week time frame at the top of my report.  For example, for this week it would be:  March 19 - March 25.  Once it gets to Sunday, it should switch to the next week:  March 26 - April 1.

 

Any idea on how to write the syntax for this?  Thanks!

 

 

1 ACCEPTED SOLUTION
v-caliao-msft
Microsoft Employee
Microsoft Employee

Hi @Rsanjuan,

 

The DAX formula below will work for your requirement.

First create a column in your date table
Weeknumber = WEEKNUM('Date'[Date])

Then create a measure

Measure = FORMAT(LOOKUPVALUE('Date'[Date],'Date'[DayOfWeekNumber],1,'Date'[Weeknumber],WEEKNUM(TODAY()),'Date'[Year],YEAR(TODAY())),"MMMM DD") & " - " & FORMAT(LOOKUPVALUE('Date'[Date],'Date'[DayOfWeekNumber],7,'Date'[Weeknumber],WEEKNUM(TODAY()),'Date'[Year],YEAR(TODAY())),"MMMM DD")

 

Capture.PNG

 

Regards,

Charlie Liao

View solution in original post

2 REPLIES 2
v-caliao-msft
Microsoft Employee
Microsoft Employee

Hi @Rsanjuan,

 

The DAX formula below will work for your requirement.

First create a column in your date table
Weeknumber = WEEKNUM('Date'[Date])

Then create a measure

Measure = FORMAT(LOOKUPVALUE('Date'[Date],'Date'[DayOfWeekNumber],1,'Date'[Weeknumber],WEEKNUM(TODAY()),'Date'[Year],YEAR(TODAY())),"MMMM DD") & " - " & FORMAT(LOOKUPVALUE('Date'[Date],'Date'[DayOfWeekNumber],7,'Date'[Weeknumber],WEEKNUM(TODAY()),'Date'[Year],YEAR(TODAY())),"MMMM DD")

 

Capture.PNG

 

Regards,

Charlie Liao

MFelix
Super User
Super User

Hi,

Try this solution and adjust to your needs.

community.powerbi.com/t5/Desktop/Display-this-week-amp-this-month-data/m-p/11207#M2459

Mfelix

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.