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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Rsanjuan
Helper IV
Helper IV

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
Employee
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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.