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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Vikas_Jayara12
New Member

Query on PreviousWeek Function

Hi Team,

I have used PREVIOUSDAY, PREVIOUSMONTH, PREVIOUSQUARTER & PREVIOUSYEAR function as well. However, unable to find PREVIOUSWEEK function. Just wanted to know why we don't have Previousweek function in DAX. Any specific reason?

 

Regards,

Vikas Singh Jayara

1 ACCEPTED SOLUTION
RicoZhou2
Resolver I
Resolver I

Hi @Vikas_Jayara12 ,

 

As far as I know, there isn't a DAX formula to calculate data in previous week. I suggest you to add a [Start Date] which is mentioned by the blog shared by ribisht17 to determind the week.

DimDate Table:

DimDate = 
VAR _BASIC = ADDCOLUMNS( CALENDARAUTO(),"Year",YEAR([Date]),"Month",MONTH([Date]),"WeekNum",WEEKNUM([Date],2))
VAR _ADD = ADDCOLUMNS(_BASIC,"Start Date",[Date] - WEEKDAY([Date],2)+1)
Return
_ADD

Then create a measure based on DATEADD() function.

Last Week Sales = 
CALCULATE(SUM('Table'[Sales]),DATEADD(DimDate[Date],-7,DAY))

 

Best Regards.

View solution in original post

2 REPLIES 2
RicoZhou2
Resolver I
Resolver I

Hi @Vikas_Jayara12 ,

 

As far as I know, there isn't a DAX formula to calculate data in previous week. I suggest you to add a [Start Date] which is mentioned by the blog shared by ribisht17 to determind the week.

DimDate Table:

DimDate = 
VAR _BASIC = ADDCOLUMNS( CALENDARAUTO(),"Year",YEAR([Date]),"Month",MONTH([Date]),"WeekNum",WEEKNUM([Date],2))
VAR _ADD = ADDCOLUMNS(_BASIC,"Start Date",[Date] - WEEKDAY([Date],2)+1)
Return
_ADD

Then create a measure based on DATEADD() function.

Last Week Sales = 
CALCULATE(SUM('Table'[Sales]),DATEADD(DimDate[Date],-7,DAY))

 

Best Regards.

ribisht17
Community Champion
Community Champion

@Vikas_Jayara12 

 

Please find this blog / solution Solved: Calculate previousweek performance starting monday - Microsoft Power BI Community

 

Thanks,

Ritesh

Mark my post as a solution if it helped you| Munde and Kudis (Ladies and Gentlemen) I like your Kudos!! !!
My YT Channel Dancing With Data !! Connect on Linkedin !!Power BI for Tableau Users 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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