Forum Discussion
ekoland88
5 years agoFrequent Visitor
Forecast coverage vs stock
I need your help I have some forecast values: Dec:323, Nov:346. October:321 and some stock value 616. I need a measure that calculates how many months I can cover with the current stock. The...
v-zhenbw-msft
Community Support
5 years agoHello @ekoland88 ,
What is the structure of your table?
If the table structure is so, you can test the following measure.
Measure =
var _not_stock_value = CALCULATE(SUM('Table'[values]),FILTER('Table','Table'[forecast]<>"stock"))
var _not_stock_count = CALCULATE(DISTINCTCOUNT('Table'[forecast]),FILTER('Table','Table'[forecast]<>"stock"))
var _stock_value = CALCULATE(SUM('Table'[values]),FILTER('Table','Table'[forecast]="stock"))
return
DIVIDE(
_stock_value,
DIVIDE(_not_stock_value,_not_stock_count))
If you don't meet your requirements, could you show the exact expected result based on the table we shared?
Best regards
Community support team _ zhenbw
If this post helps,then consider Accepting it as the solution to help other members find it faster.
BTW, pbix as an attachment.