Quarterly NPS dashboard
Our survey responses are dumped into one file which is updated daily. From this we can calculate an NPS over any period. I want to create a dashboard workbook that points to this base file and displays the NPS per quarter, per year.
Sample survey data
An NPS is calculated like this: find the percentage of responses that are 9 or 10, and subtract the percentage of responses that are less than 7. In this sample, 50% of responses are 9 or 10, 33.33% are less than 7, so the NPS is 16.67.
And I want to do this by quarter. Ideally I need to do it without helper columns as I'd like it to be one cell pulling the calc from the base sheet and representing it into a chart. But there are too many different types of selections involved here and I can't get them straight.
I know I need to use YEAR() and MONTH() on the AddDate to get those selections, and I know I can ROUNDUP(MONTH()/3,0) to get the quarter for each date. COUNTIF() won't take YEAR() or MONTH() as inputs. I've tried using something like this SUMPRODUCT() as a basis (just to get the scores greater than 8):
=SUMPRODUCT(--(ROUNDUP(MONTH(A2:A100)/3,0)=1)*(YEAR(A2:A100)=2018)*(B2:B100>8),B18:B10016)
but this sums the results rather than counting them, and I can't figure out how to wrap it in a count.
At this point, I don't know if I'm even on the right track. Maybe there's something other than SUMPRODUCT() that I should be using here. If the data were formatted differently - if it already noted the year and month as values I could grab directly - I could do this, but I have to use the data as it currently stands.
Any pointers gratefully received.
microsoft-excel dashboard
add a comment |
Our survey responses are dumped into one file which is updated daily. From this we can calculate an NPS over any period. I want to create a dashboard workbook that points to this base file and displays the NPS per quarter, per year.
Sample survey data
An NPS is calculated like this: find the percentage of responses that are 9 or 10, and subtract the percentage of responses that are less than 7. In this sample, 50% of responses are 9 or 10, 33.33% are less than 7, so the NPS is 16.67.
And I want to do this by quarter. Ideally I need to do it without helper columns as I'd like it to be one cell pulling the calc from the base sheet and representing it into a chart. But there are too many different types of selections involved here and I can't get them straight.
I know I need to use YEAR() and MONTH() on the AddDate to get those selections, and I know I can ROUNDUP(MONTH()/3,0) to get the quarter for each date. COUNTIF() won't take YEAR() or MONTH() as inputs. I've tried using something like this SUMPRODUCT() as a basis (just to get the scores greater than 8):
=SUMPRODUCT(--(ROUNDUP(MONTH(A2:A100)/3,0)=1)*(YEAR(A2:A100)=2018)*(B2:B100>8),B18:B10016)
but this sums the results rather than counting them, and I can't figure out how to wrap it in a count.
At this point, I don't know if I'm even on the right track. Maybe there's something other than SUMPRODUCT() that I should be using here. If the data were formatted differently - if it already noted the year and month as values I could grab directly - I could do this, but I have to use the data as it currently stands.
Any pointers gratefully received.
microsoft-excel dashboard
add a comment |
Our survey responses are dumped into one file which is updated daily. From this we can calculate an NPS over any period. I want to create a dashboard workbook that points to this base file and displays the NPS per quarter, per year.
Sample survey data
An NPS is calculated like this: find the percentage of responses that are 9 or 10, and subtract the percentage of responses that are less than 7. In this sample, 50% of responses are 9 or 10, 33.33% are less than 7, so the NPS is 16.67.
And I want to do this by quarter. Ideally I need to do it without helper columns as I'd like it to be one cell pulling the calc from the base sheet and representing it into a chart. But there are too many different types of selections involved here and I can't get them straight.
I know I need to use YEAR() and MONTH() on the AddDate to get those selections, and I know I can ROUNDUP(MONTH()/3,0) to get the quarter for each date. COUNTIF() won't take YEAR() or MONTH() as inputs. I've tried using something like this SUMPRODUCT() as a basis (just to get the scores greater than 8):
=SUMPRODUCT(--(ROUNDUP(MONTH(A2:A100)/3,0)=1)*(YEAR(A2:A100)=2018)*(B2:B100>8),B18:B10016)
but this sums the results rather than counting them, and I can't figure out how to wrap it in a count.
At this point, I don't know if I'm even on the right track. Maybe there's something other than SUMPRODUCT() that I should be using here. If the data were formatted differently - if it already noted the year and month as values I could grab directly - I could do this, but I have to use the data as it currently stands.
Any pointers gratefully received.
microsoft-excel dashboard
Our survey responses are dumped into one file which is updated daily. From this we can calculate an NPS over any period. I want to create a dashboard workbook that points to this base file and displays the NPS per quarter, per year.
Sample survey data
An NPS is calculated like this: find the percentage of responses that are 9 or 10, and subtract the percentage of responses that are less than 7. In this sample, 50% of responses are 9 or 10, 33.33% are less than 7, so the NPS is 16.67.
And I want to do this by quarter. Ideally I need to do it without helper columns as I'd like it to be one cell pulling the calc from the base sheet and representing it into a chart. But there are too many different types of selections involved here and I can't get them straight.
I know I need to use YEAR() and MONTH() on the AddDate to get those selections, and I know I can ROUNDUP(MONTH()/3,0) to get the quarter for each date. COUNTIF() won't take YEAR() or MONTH() as inputs. I've tried using something like this SUMPRODUCT() as a basis (just to get the scores greater than 8):
=SUMPRODUCT(--(ROUNDUP(MONTH(A2:A100)/3,0)=1)*(YEAR(A2:A100)=2018)*(B2:B100>8),B18:B10016)
but this sums the results rather than counting them, and I can't figure out how to wrap it in a count.
At this point, I don't know if I'm even on the right track. Maybe there's something other than SUMPRODUCT() that I should be using here. If the data were formatted differently - if it already noted the year and month as values I could grab directly - I could do this, but I have to use the data as it currently stands.
Any pointers gratefully received.
microsoft-excel dashboard
microsoft-excel dashboard
asked Feb 6 at 7:43
Castor QuinnCastor Quinn
31
31
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If you think that Promoters are worth 1, Passives are 0 and Detractors are -1 you can then average these individual scores to get your NPS.
In your example provided you effectively substitute in -1, 0, 1, -1, 1, 1 which when averaged gives 16.67%
This method of calculating averages can be subbed in to an array formula that looks something like:
=AVERAGE(IF(YEAR(A2:A100)=2019,IF(ROUNDUP(MONTH(A2:A100)/3,0)=1,IF(B2:B100>8,1,IF(B2:B100>6,0,-1)))))
Then press Ctrl, Shift + Enter to calculate it as an array
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1402557%2fquarterly-nps-dashboard%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you think that Promoters are worth 1, Passives are 0 and Detractors are -1 you can then average these individual scores to get your NPS.
In your example provided you effectively substitute in -1, 0, 1, -1, 1, 1 which when averaged gives 16.67%
This method of calculating averages can be subbed in to an array formula that looks something like:
=AVERAGE(IF(YEAR(A2:A100)=2019,IF(ROUNDUP(MONTH(A2:A100)/3,0)=1,IF(B2:B100>8,1,IF(B2:B100>6,0,-1)))))
Then press Ctrl, Shift + Enter to calculate it as an array
add a comment |
If you think that Promoters are worth 1, Passives are 0 and Detractors are -1 you can then average these individual scores to get your NPS.
In your example provided you effectively substitute in -1, 0, 1, -1, 1, 1 which when averaged gives 16.67%
This method of calculating averages can be subbed in to an array formula that looks something like:
=AVERAGE(IF(YEAR(A2:A100)=2019,IF(ROUNDUP(MONTH(A2:A100)/3,0)=1,IF(B2:B100>8,1,IF(B2:B100>6,0,-1)))))
Then press Ctrl, Shift + Enter to calculate it as an array
add a comment |
If you think that Promoters are worth 1, Passives are 0 and Detractors are -1 you can then average these individual scores to get your NPS.
In your example provided you effectively substitute in -1, 0, 1, -1, 1, 1 which when averaged gives 16.67%
This method of calculating averages can be subbed in to an array formula that looks something like:
=AVERAGE(IF(YEAR(A2:A100)=2019,IF(ROUNDUP(MONTH(A2:A100)/3,0)=1,IF(B2:B100>8,1,IF(B2:B100>6,0,-1)))))
Then press Ctrl, Shift + Enter to calculate it as an array
If you think that Promoters are worth 1, Passives are 0 and Detractors are -1 you can then average these individual scores to get your NPS.
In your example provided you effectively substitute in -1, 0, 1, -1, 1, 1 which when averaged gives 16.67%
This method of calculating averages can be subbed in to an array formula that looks something like:
=AVERAGE(IF(YEAR(A2:A100)=2019,IF(ROUNDUP(MONTH(A2:A100)/3,0)=1,IF(B2:B100>8,1,IF(B2:B100>6,0,-1)))))
Then press Ctrl, Shift + Enter to calculate it as an array
answered Feb 6 at 10:26
RickyTillsonRickyTillson
32718
32718
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1402557%2fquarterly-nps-dashboard%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown