Forum Discussion
Anonymous
4 years agoNot applicable
AVERAGE
Hi All, I get two different outputs while using AVERAGE. In excel, i get a different value and in PowerBI a different value. Can I know why that is happening? I have attached the images belo...
- 4 years ago
If you are creating a
ABC = DIVIDE(AVG2[col1]+AVG2[col2]+AVG2[col3]+AVG2[col4]+AVG2[col5], IF(ISBLANK(AVG2[col1]),0,1)+ IF(ISBLANK(AVG2[col2]),0,1)+ IF(ISBLANK(AVG2[col3]),0,1)+ IF(ISBLANK(AVG2[col4]),0,1)+ IF(ISBLANK(AVG2[col5]),0,1) ,BLANK())calculated column then you may need to use this.
Anonymous
4 years agoNot applicable
FarhanAhmed
4 years agoCommunity Champion
If you are creating a
ABC =
DIVIDE(AVG2[col1]+AVG2[col2]+AVG2[col3]+AVG2[col4]+AVG2[col5],
IF(ISBLANK(AVG2[col1]),0,1)+
IF(ISBLANK(AVG2[col2]),0,1)+
IF(ISBLANK(AVG2[col3]),0,1)+
IF(ISBLANK(AVG2[col4]),0,1)+
IF(ISBLANK(AVG2[col5]),0,1)
,BLANK())
calculated column then you may need to use this.
- Anonymous4 years agoNot applicable
Thanks a lot! FarhanAhmed