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 need some help to make a future calculation. for example in February i sold 28.000 in 28 days so for march the future calculation must say 31.000 because march has 31 days so 1000 x 31. this is a realy easy example but it shows what i want for a result.
i have a table with a date colum and a Revenu colum. in my model i have made a relation on date with a calender table. what kind of measure do i need to make this work i want to filter on month and year with a slicer.
many thanks
Solved! Go to Solution.
Hi @Krijgersss ,
According to your statement, I think you want to forecast the sales based on last month sales.
I suggest you to try my workaround.
Data model:
Measure:
Days Count = CALCULATE(DISTINCTCOUNT('Calendar'[Date]))
Forecast Sales based on last month =
CALCULATE(SUM('Table'[Sales]),PREVIOUSMONTH('Calendar'[Date])) / CALCULATE(DISTINCTCOUNT('Calendar'[Date]),PREVIOUSMONTH('Calendar'[Date])) * [Days Count]
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Here is one way to do this:
Data:
Dax:
End result:
Here we test for if date in fact is larger than today -> future value. Then we calculate a forecast. Here it is based on the value of previous month. So April and May are forecasts here. Here the logic is to simply take the previous months value, but the logic can be whatever. E.g. here the value is lastmonth's value times 2.
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
basicly i want the revenu of last month per day calculated on next month so for example february its 29,000 let say 1,000 per day than march will be 31,000 because february is 29days a 1,000 perday so my prognose/ future calculation will be 2 more days +1,000 is 31,000
Hi @Krijgersss ,
According to your statement, I think you want to forecast the sales based on last month sales.
I suggest you to try my workaround.
Data model:
Measure:
Days Count = CALCULATE(DISTINCTCOUNT('Calendar'[Date]))
Forecast Sales based on last month =
CALCULATE(SUM('Table'[Sales]),PREVIOUSMONTH('Calendar'[Date])) / CALCULATE(DISTINCTCOUNT('Calendar'[Date]),PREVIOUSMONTH('Calendar'[Date])) * [Days Count]
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
17 | |
10 | |
10 | |
8 | |
6 |
User | Count |
---|---|
20 | |
19 | |
19 | |
13 | |
10 |