Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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.
Schedule a short Teams meeting to discuss your question
Please, anyone can help me? @amitchandak @Greg_Deckler @lbendlin @Ashish_Mathur @Ahmedx @ryan_mayu @jdbuchanan71 @Jihwan_Kim Thank you so much!
User | Count |
---|---|
84 | |
76 | |
64 | |
51 | |
46 |
User | Count |
---|---|
101 | |
42 | |
41 | |
39 | |
36 |