March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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 calculation would show that.
Visual
Data for Above (These all match the filter but the blank values should be ignored as shown below in calculation)
Calculation:
Any ideas?
Hi, @Anonymous
You may try the following measure to see if it works.
Calculated NPS =
VAR _participantAdvocates =
CALCULATE (
COUNTROWS ( 'Primary' ),
FILTER (
ALL ( 'Primary' ),
'Primary'[NPS Score] >= 9
&& 'Primary'[NPS Score] <> BLANK ()
)
)
VAR _participantDetractors =
CALCULATE (
COUNTROWS ( 'Primary' ),
FILTER (
ALL ( 'Primary' ),
'Primary'[NPS Score] <= 6
&& 'Primary'[NPS Score] <> BLANK ()
)
)
VAR _totalParticipantResponses =
CALCULATE (
COUNTROWS ( 'Primary' ),
FILTER ( ALL ( 'Primary' ), 'Primary'[NPS Score] <> BLANK () )
)
RETURN
DIVIDE (
_participantAdvocates - _participantDetractors,
_totalParticipantResponses
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
20 | |
13 | |
10 | |
9 | |
7 |
User | Count |
---|---|
40 | |
26 | |
16 | |
16 | |
10 |