Forum Discussion
Anonymous
4 years agoNot applicable
Strategic Value
Hi everyone, I'm trying to calculate a strategic value, but I'm not sure how to do that in DAX. Below is logic and they come from one single table. Can you please help me have this in DAX? Stra...
- Anonymous4 years ago
Hey, amitchandak thanks for your help.
I applied the below calculated column and it worked.Planned Maintenance Strategic Value =var MAX_Value= MAX(Costs[Planned maintenance PV 30 years])var Min_Value = MIN(Costs[Planned maintenance PV 30 years])return 100-((Costs[Planned maintenance PV 30 years]-Min_Value)/(MAX_Value-Min_Value))*100
amitchandak
4 years agoSuper User
Anonymous ,
M1 =
divide(
sum(Table[Planned maintenance]) -Min(Table[Planned maintenance]),
max(Table[Planned maintenance]) -Min(Table[Planned maintenance])
)
If needed
M2 = calculate([M1], all())
Anonymous
4 years agoNot applicable
Hey, amitchandak thanks for your help.
I applied the below calculated column and it worked.
Planned Maintenance Strategic Value =
var MAX_Value= MAX(Costs[Planned maintenance PV 30 years])
var Min_Value = MIN(Costs[Planned maintenance PV 30 years])
return 100-((Costs[Planned maintenance PV 30 years]-Min_Value)/(MAX_Value-Min_Value))*100