Forum Discussion
wlknsn
Helper I
7 years agoBest Practice: Extrapolation/Forecasting
Before I starte waisting hours on finding the best practise on this topic, I though I might just ask given the question is pretty simple. Let's say you have a model with the following data: Cust...
TeigeGao
Solution Sage
7 years agoHi wlknsn ,
In your scenario, I would use the following DAX query to do that:
Result =
CALCULATE (
SUM ( Data[Monthly fee] ),
FILTER (
ALL ( Data ),
Data[Start Date] <= MIN ( 'Date'[Date] )
&& Data[End Date] >= MAX ( 'Date'[Date] )
)
)The result will like below:
Best Regards,
Teige