Forum Discussion
collmomo
9 years agoAdvocate I
Measure to Calculated column
I have this measure which was created like that DIO Year-End := ([Net Inventory Month End]*91/[Total COS (Adj.) 3 Mths]) Net Inventory Month End := CALCULATE(SUM(Actual[Amount]),Actual[ID]=1)...
- 9 years ago
Hi collmomo,
It is working but I needed to make an average out of this thus I created a calculated column.
In this scenario, you should be able to use AVERAGEX Function (DAX) to create a measue to calcuate the average, without creating the calculate column. The formula below is for your reference.:smileyhappy:
Avg DIO Year-End = AVERAGEX ( Actual, [DIO Year-End] )
Regards