Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 36 | |
| 30 | |
| 26 |