Forum Discussion
Fcoatis
5 years agoPost Patron
Hard time figuring out context
Hello all, Hard time to get the result expected. Every variable has been checked but the problem seem to be the context of "Base" in SUMX: The result expected is the value of Covar...
- 5 years ago
Here is what I ended up.
.Covar = VAR Tabela = FILTER( SELECTCOLUMNS( ALLSELECTED(Base[Date]), "LnAsset", [.ln], "LnIBOV", CALCULATE([.ln],Base[Asset]="IBOV") ), AND ( NOT( ISBLANK( [LnAsset])), NOT ( ISBLANK( [LnIBOV] )) ) ) VAR Denom = COUNTROWS(Tabela)-1 VAR Res = SUMX(Tabela, ([LnAsset]-AVERAGEX(Tabela,[LnAsset]))*([LnIBOV]-AVERAGEX(Tabela,[LnIBOV]))/Denom) RETURN Res
Fcoatis
5 years agoPost Patron
Greg_Deckler thanks for your answer. I just wanted to add all the values of Result. When I just called Var Result it didnt show the expected value ( -0.0000795701 ). I´m missing the table variable. Just fyi the SUMX(Base, Result) and just Result returned diferent values. I can share the pbix if you like. Thanks again.
Greg_Deckler
5 years agoCommunity Champion
Fcoatis PBIX would definitely help.