Forum Discussion
Anonymous
5 years agoNot applicable
Filtered NPS showing 200$?
I have an NPS score being calculated which works fine under normal circumstances. Once I add a filter to look at a specific service line, the value changes to 200% and I cant figure out how the calcu...
StefanoGrimaldi
5 years agoResident Rockstar
hey,
try simplifying that measure first, something like this should work:
Calculated NPS =
Var primary2 = filter("primary", [NPS Score] <> Blank() )
Var Total = count("primary2"[NPS Score])
Var PBenefecators = (calculate(count(primary2[NPS Score]), primary[NPS Score] >=8)) / Total
Var PDetractors = (calculate(count(primary2[NPS Score]), primary[NPS Score] <=6)) / Total
return PBenefactors - PDetractors
this should work,
f this solved your problem please mark it as solution for others to find more easily, if you liked the solution give some kudos.