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
Weatherreport
Frequent Visitor

DAX Measure returning previous week sales by time range

Hi Everyone,

 

I have some sales data with date/time as per below sample:

 

Weatherreport_0-1615869160200.png

 

I would like to build a DAX measure that would return previous week (to date) sales between 4am and NOW.

In other words, as our business week starts on Tuesday and ends on Monday, let's say that if today is Wednesday 17/03 3:39pm, I would need a formula that returns sales between Tue 9/03 4am and Wed 10/03 3:39 pm.

 

I hope it makes sense but happy to provide a better explanation if required.

 

Thank you so much for helping.

 

Regards,

Marco

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Weatherreport , Last tueday will be

 

Last Tuesday = (Today() +-1*WEEKDAY(Today(),2)+1) -6

 

So you can trya measure like

 

From last tuesday =
var _last =(Today() +-1*WEEKDAY(Today(),2)+1) -6 + time(hour(now()), minute(now()), second(Now()))
var _now = now()
return
calculate(sum(Table[Value]), filter(Table, Table[Datetime] >=_last && Table[Datetime] <=_now))

View solution in original post

3 REPLIES 3
Weatherreport
Frequent Visitor

@amitchandak Sorry maybe I hadn't tagged you properly before

amitchandak
Super User
Super User

@Weatherreport , Last tueday will be

 

Last Tuesday = (Today() +-1*WEEKDAY(Today(),2)+1) -6

 

So you can trya measure like

 

From last tuesday =
var _last =(Today() +-1*WEEKDAY(Today(),2)+1) -6 + time(hour(now()), minute(now()), second(Now()))
var _now = now()
return
calculate(sum(Table[Value]), filter(Table, Table[Datetime] >=_last && Table[Datetime] <=_now))

@ amitchandak

Thanks for your prompt reply. The formula seems working pretty well except there is some small difference in terms of amount and I must understand why. 

However, as it is at least a good step towards the solution, I'm happy to accept it as a solution.

 

Quick question (otherwise I might raise another ticket to the Community): If I only want last week sales for same time as today (eg. between midnight and now) - instead than the WTD as per above formula - what should I change it to make it working?

 

Thanks,

Marco

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.

Top Solution Authors