Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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 ) )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Please, anyone can help me? @amitchandak @Greg_Deckler @lbendlin @Ashish_Mathur @Ahmedx @ryan_mayu @jdbuchanan71 @Jihwan_Kim Thank you so much!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |