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.
Good Day
How can I change the below formula to calculate the sales for this month, but only for completed days?
The below formula is reading for the previous year.
Solved! Go to Solution.
Hi @bvanderwatt ,
Try this
MTD NSls LY (Completed days) =
VAR _TODAY = TODAY()
var endLastYear = _TODAY-1
var startLastYear = EOMONTH( _TODAY, -1) + 1
RETURN
CALCULATE(
'Combined Sales'[Sum of Inv+Order],
DATESBETWEEN( 'Calendar'[Date], startLastYear, endLastYear)
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @bvanderwatt ,
Try this
MTD NSls LY (Completed days) =
VAR _TODAY = TODAY()
var endLastYear = _TODAY-1
var startLastYear = EOMONTH( _TODAY, -1) + 1
RETURN
CALCULATE(
'Combined Sales'[Sum of Inv+Order],
DATESBETWEEN( 'Calendar'[Date], startLastYear, endLastYear)
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Easiest way is probably just to put a filter on the report chart/page that excludes today.
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
49 | |
42 | |
39 | |
38 |