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