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...
edhans
6 years agoCommunity Champion
Can you not just filter them out like this?
VAR __table =
SUMMARIZE(
FILTER(
GeneralStatistics,
TotalVisits <> 0
),
[Date],
"__EquipID", [EquipmentIDRatio]
)
RETURN
STDEVX.P(
__table,
[__EquipID]
)