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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Good afternoon!
I hope i can ask another question again.
I would like to have a measure to compute projected sales for the entire month considering the MTD run rate. However, I cant see anything that pertains to that?
For example, MTD sales is 25,000 (as of 27th Nov), I am expecting to have 27,777 as result when I compute the 'landing sales' for the month.
Formula: (25,000/27) * 30 = 27,777
Rgds, Cristina
@Sachet_716,
Create a measure in your table using DAX below.
landing sales = ( [MTD Sales]/DAY(MAX(DateDim[Date])))*DAY(EOMONTH(MAX(DateDim[Date]),0))
Regards,
Lydia
Thanks Lydia,
I made use of the measure but it returns with the same MTD sales?
Rgds, Cristina
@Sachet_716,
Do you need to get data based on MTD /today's day * days of current month? If so, create a column as follows.
today= Today()
Then replace datekey field with the today field in the landing measure.
Regards,
Lydia
Thank you lydi, will try this out. 🙂
The way I've done this is on my date table to have a couple of columns, one returning a 1 if the date is in the current month, and another returning a 1 if the date is in the past, and then having measures to sum them, the first one on its own, the second conditional on the first - that'll give you the figures you need to get your projections.
You could probably also approach it using the datediff function and combinations of today and eomonth as an alternative
Thank you, do you mind sharing the formula? 😞
Thanks, Cristina
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 23 | |
| 19 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 53 | |
| 47 | |
| 40 | |
| 38 |