Calculate NPS - help with formulas

devett

New Member
Joined
Dec 19, 2013
Messages
3
I'm having some challenges calculating NPS in a spreadsheet.

I have the total NPS score, using formula =100*(COUNTIF(K:K;">8")-COUNTIF(K:K;"<5"))/COUNT(K:K) - This calculate the total NPS of all rows i column K in my spreadsheet.

My challenge is, that I need to calculate the same number, but only for the rows with the value "Backoffice" in my column F. How do I do this?
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Use countifs if you are on office 2007 or above.

otherwise

=100*((SUMPRODUCT(--(K:K>8),--(F:F="Backoffice")))-SUMPRODUCT(--(K:K<5),--(F:F="Backoffice"))/COUNTIF(F:F,"Backoffice"))
 
Upvote 0
Use countifs if you are on office 2007 or above.

otherwise

=100*((SUMPRODUCT(--(K:K>8),--(F:F="Backoffice")))-SUMPRODUCT(--(K:K<5),--(F:F="Backoffice"))/COUNTIF(F:F,"Backoffice"))


It's not working for me at all. I'm using Excel 2007. This returns an error:

=100*((COUNTIFS(--(K:K>8);--(F:F="Backoffice")))-COUNTIFS(--(K:K<5);(F:F="Backoffice"))/COUNTIF(F:F;"Backoffice"))

I've changes your commas, since my excel seems to need semicolon instead, but still not working? I tried this too, it returns a number, but that seems totally off:

=100*((SUMPRODUCT(--(K:K>8);--(F:F="Backoffice")))-SUMPRODUCT(--(K:K<5);--(F:F="Backoffice"))/COUNTIF(F:F;"Backoffice"))

This returns the number 364,3 which seems way to high? The correct value should be -7,1 when I have this data:

Backoffice0
Backoffice8
Backoffice10
Backoffice5
Backoffice7
Backoffice0
Backoffice0
Backoffice10
Backoffice4
Backoffice9
Backoffice4
Backoffice10
Backoffice7
Backoffice8

<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
Use countifs if you are on office 2007 or above.

otherwise

=100*((SUMPRODUCT(--(K:K>8),--(F:F="Backoffice")))-SUMPRODUCT(--(K:K<5),--(F:F="Backoffice"))/COUNTIF(F:F,"Backoffice"))


I've figured it out, this is working now (don't mind that the columns has changed)

=100*(((SUMPRODUCT(--(H:H>8);--(G:G="Backoffice")))-SUMPRODUCT(--(H:H<5);--(G:G="Backoffice")))/COUNTIF(G:G;"Backoffice"))
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top