Forum Discussion
rsbin
6 years agoCommunity Champion
Standard Deviation yields NaN error
Good Afternoon All & Greg_Deckler Following up on my previous thread wherein I used the following formula to calculate Standard Deviation: StdDev_EquipID = VAR __table = SUMMARIZE(GeneralSt...
az38
6 years agoCommunity Champion
try
StdDev_EquipID =
VAR __table = SUMMARIZE(FILTER(GeneralStatistics, GeneralStatistics[TotalVisits] <> 0),[Date],"__EquipID",[EquipmentIDRatio])
RETURN STDEVX.P(__table,[__EquipID])