Forum Discussion
Rolling average forecast
Hi Whitney,
Try measure as:
Total WIP hours =
sumx(filter('Table',[Powertrain_WIP_Relative]="WIP")),'Tracking Sheet'[Build Hours])
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
v-xulin-mstf thanks, this worked for the first calculation however, I'm now getting this error for the WIP forecast:
'an invalid numeric representation of a date value was encountered'
- v-xulin-mstf5 years ago
Community Support
Hi Whitney,
Please check:
Does your date column contain an irregular date format? For example 'Year 9999'.
If the issue persists, you can abandon the time-intelligent function and use the time function instead.
Best Regards,
LinkIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
- Whitney5 years ago
Helper II
HI v-xulin-mstf
See below - issue still persists. Time intelligence was ticked however, unticked still results in the same error.- v-xulin-mstf5 years ago
Community Support
Hi Whitney,
Try measure as:
Total WIP Forecast = IF(ISBLANK([Total WIP Hours]), CALCULATE([Total WIP Hours],DATEADD('IDW DimDate'[Date],-1,YEAR)), BLANK() )Best Regards,
LinkIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.