Forum Discussion
Anonymous
6 years agoNot applicable
Adding a Projection to Historical Data
Hello, I am looking to take historical QOH data & be able to add on a calculated future projection to a model. I've added a picture of a small example I created. I know the logic needed, but ca...
- 6 years ago
Anonymous
6 years agoNot applicable
I have included the formulas to my measures below, and here is a link to the .pbix file .
Historical QOH (Measure) =
SUM('zz - Practice QOH'[Historical QOH])
Demand (Measure) =
SUM('zz - Practice QOH'[Demand])
POs Landing (Measure) =
SUM('zz - Practice QOH'[POs Landing])
Forecast =
[Demand (Measure)] + [POs Landing (Measure)]
QOH + Forecast =
CALCULATE('zz - Practice QOH'[Historical QOH (Measure)],LASTDATE('zz - Practice QOH'[Date]) ) + [Forecast]