Forum Discussion
SUMX not calculating expected sum values
Hi, I am trying to use SUMX to get total mkv by summing up all multiplication of a measure ('adj factor') and a column ( __mkv). However, as shown in the screen shot, it looks it calculates the sum value first and then times 'adj factor' after. I expect to get same total mkv in the same date. Any advice on how to get correnct sum, please?
my formula: SUMX(ALL(myTBL),myTBL[ __mkv]*[adj factor]) where [adj factor] is a measure,
VAR adj factor =CALCULATE(1/(1+(EXP((-1)*_Zscore)))
3 Replies
- selimovd
Most Valuable Professional
- RCHANG44Frequent Visitor
Hi selimovd ,
Here is my DAX code, thanks:total mkv =
VAR Score_Avg =
CALCULATE(AVERAGE(MyTBL[_score]),ALLEXCEPT(MyTBL,MyTBL[Date]))
VAR Score_Std =
CALCULATE(STDEV.P(MyTBL[_score]),ALLEXCEPT(MyTBL,MyTBL[Date]))
VAR _Zscore =
CALCULATE(
(sum(MyTBL[_score]) - Score_Avg)/Score_Std,
KEEPFILTERS(
FILTER(ALL(MyTBL_[_score]), MyTBL[_score]<>BLANK())
)
)
VAR _Sigmoid =
CALCULATE(
1/(1+(EXP((-1)*_Zscore))),
KEEPFILTERS(
FILTER(ALL(MyTBL[_score]), MyTBL[_score]<>BLANK())
)
)
RETURNSUMX(ALL(MyTBL),MyTBL[ __mkv]*_Sigmoid)