Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I want to calculate sales of last three WORKING days. I have a boolean column in table dates (is_not_working_day) which it checks "TRUE" when it isn't working day.
In addition, I have created a table that returns the record of the last time the report was updated.
I want it to return me the sum of the sales (SUM(sale_order[sales_amount])) of the last 3 WORKING days. For example if today is Friday and Thursday was NOT a business day, I should sum the sales for Wednesday, Tuesday, and Monday.
Thank you so much!!!
Hi,
I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
last 3 working days sales: =
VAR _currentrowdate =
MAX ( 'Calendar'[Date] )
VAR _t =
FILTER (
ALL ( 'Calendar' ),
'Calendar'[is_not_working_day] = FALSE ()
&& 'Calendar'[Date] < _currentrowdate
)
RETURN
CALCULATE (
SUM ( Sales[Sales] ),
WINDOW ( 1, ABS, 3, ABS, _t, ORDERBY ( 'Calendar'[Date], DESC ) )
)
Please, anyone can help me? @amitchandak @Greg_Deckler @lbendlin @Ashish_Mathur @Ahmedx @ryan_mayu @jdbuchanan71 @Jihwan_Kim Thank you so much!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 107 | |
| 39 | |
| 33 | |
| 25 |