Why is excel calculating percentages in thousands? Announcing the arrival of Valued Associate...
Is it fair for a professor to grade us on the possession of past papers?
How fail-safe is nr as stop bytes?
Illegal assignment from sObject to Id
Time to Settle Down!
Using et al. for a last / senior author rather than for a first author
Would the Life Transference spell be unbalanced if it ignored resistance and immunity?
Can anything be seen from the center of the Boötes void? How dark would it be?
Is there any word for a place full of confusion?
How come Sam didn't become Lord of Horn Hill?
Most bit efficient text communication method?
Significance of Cersei's obsession with elephants?
Chinese Seal on silk painting - what does it mean?
What's the meaning of "fortified infraction restraint"?
As a beginner, should I get a Squier Strat with a SSS config or a HSS?
Selecting user stories during sprint planning
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
Do I really need to have a message in a novel to appeal to readers?
What do you call the main part of a joke?
What initially awakened the Balrog?
Why wasn't DOSKEY integrated with COMMAND.COM?
An adverb for when you're not exaggerating
Crossing US/Canada Border for less than 24 hours
Should I follow up with an employee I believe overracted to a mistake I made?
Performance gap between vector<bool> and array
Why is excel calculating percentages in thousands?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Is it possible to build a cumulative formula that will sum on new worksheet added daily?Splitting an excel 2010 spreadsheet into multiple workbook files based on column valueSpreadsheet for Daily Equipment HoursExcel SUM From Different Sheets IF Date FoundHow do I import data from 6 Excel Workbooks into one on a daily basis?Excel 2010: Daylight Savings - calculate # of hours between timestamps for any given dayLinking Excel WorkbooksUsing a macro to copy a worksheet from another workbookExcel auto-populate data in master sheetStop Excel formula from changing when inserting/deleting rows
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm creating a report for my work wherein it takes all the daily stats and outputs a monthly report for all the team members regarding sign on time, calls taken, etc.
When I'm working out the percentages of available, wrap-up and unavailalbe, the individual days are fine, as they are done by manual input (copy/paste as values from another sheet).
I have created a "dashboard" style sheet at the front of the workbook which gives the monthly totals. I've used a 3D formula =AVERAGE('1:31'!P3) to take the percentages for all the individual days, but the result comes out in it's thousands.
Eg: One employee has available for the three days as 40%, 34% and 41%. In the "dashboard" sheet, it works out the average as 3846% instead of 38%. Why does this happen?
worksheet-function
add a comment |
I'm creating a report for my work wherein it takes all the daily stats and outputs a monthly report for all the team members regarding sign on time, calls taken, etc.
When I'm working out the percentages of available, wrap-up and unavailalbe, the individual days are fine, as they are done by manual input (copy/paste as values from another sheet).
I have created a "dashboard" style sheet at the front of the workbook which gives the monthly totals. I've used a 3D formula =AVERAGE('1:31'!P3) to take the percentages for all the individual days, but the result comes out in it's thousands.
Eg: One employee has available for the three days as 40%, 34% and 41%. In the "dashboard" sheet, it works out the average as 3846% instead of 38%. Why does this happen?
worksheet-function
add a comment |
I'm creating a report for my work wherein it takes all the daily stats and outputs a monthly report for all the team members regarding sign on time, calls taken, etc.
When I'm working out the percentages of available, wrap-up and unavailalbe, the individual days are fine, as they are done by manual input (copy/paste as values from another sheet).
I have created a "dashboard" style sheet at the front of the workbook which gives the monthly totals. I've used a 3D formula =AVERAGE('1:31'!P3) to take the percentages for all the individual days, but the result comes out in it's thousands.
Eg: One employee has available for the three days as 40%, 34% and 41%. In the "dashboard" sheet, it works out the average as 3846% instead of 38%. Why does this happen?
worksheet-function
I'm creating a report for my work wherein it takes all the daily stats and outputs a monthly report for all the team members regarding sign on time, calls taken, etc.
When I'm working out the percentages of available, wrap-up and unavailalbe, the individual days are fine, as they are done by manual input (copy/paste as values from another sheet).
I have created a "dashboard" style sheet at the front of the workbook which gives the monthly totals. I've used a 3D formula =AVERAGE('1:31'!P3) to take the percentages for all the individual days, but the result comes out in it's thousands.
Eg: One employee has available for the three days as 40%, 34% and 41%. In the "dashboard" sheet, it works out the average as 3846% instead of 38%. Why does this happen?
worksheet-function
worksheet-function
asked 10 hours ago
Ian ScottIan Scott
32
32
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The only thing I can see without looking at the specific spreadsheet is that there may be an issue with one of the data points you are including in the average being formatted as a number, instead of as a percentage, which would create this large value as a percentage in your average formula.
If you just take the average with a calculator normally you would get 38.33% and it seems like your thousands number is really close to that, but the decimal is in the wrong spot. If you do have the values formatted as a number and not a percentage, you can just add a /100 at the end of your average formula to get you back to your expected value instead of having to change all of the numbers individually to a percent, which can sometimes be a pain.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
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%2f1427048%2fwhy-is-excel-calculating-percentages-in-thousands%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
The only thing I can see without looking at the specific spreadsheet is that there may be an issue with one of the data points you are including in the average being formatted as a number, instead of as a percentage, which would create this large value as a percentage in your average formula.
If you just take the average with a calculator normally you would get 38.33% and it seems like your thousands number is really close to that, but the decimal is in the wrong spot. If you do have the values formatted as a number and not a percentage, you can just add a /100 at the end of your average formula to get you back to your expected value instead of having to change all of the numbers individually to a percent, which can sometimes be a pain.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
add a comment |
The only thing I can see without looking at the specific spreadsheet is that there may be an issue with one of the data points you are including in the average being formatted as a number, instead of as a percentage, which would create this large value as a percentage in your average formula.
If you just take the average with a calculator normally you would get 38.33% and it seems like your thousands number is really close to that, but the decimal is in the wrong spot. If you do have the values formatted as a number and not a percentage, you can just add a /100 at the end of your average formula to get you back to your expected value instead of having to change all of the numbers individually to a percent, which can sometimes be a pain.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
add a comment |
The only thing I can see without looking at the specific spreadsheet is that there may be an issue with one of the data points you are including in the average being formatted as a number, instead of as a percentage, which would create this large value as a percentage in your average formula.
If you just take the average with a calculator normally you would get 38.33% and it seems like your thousands number is really close to that, but the decimal is in the wrong spot. If you do have the values formatted as a number and not a percentage, you can just add a /100 at the end of your average formula to get you back to your expected value instead of having to change all of the numbers individually to a percent, which can sometimes be a pain.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
The only thing I can see without looking at the specific spreadsheet is that there may be an issue with one of the data points you are including in the average being formatted as a number, instead of as a percentage, which would create this large value as a percentage in your average formula.
If you just take the average with a calculator normally you would get 38.33% and it seems like your thousands number is really close to that, but the decimal is in the wrong spot. If you do have the values formatted as a number and not a percentage, you can just add a /100 at the end of your average formula to get you back to your expected value instead of having to change all of the numbers individually to a percent, which can sometimes be a pain.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 10 hours ago
DataNinjaDataNinja
214
214
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
DataNinja is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
add a comment |
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
Hi, I've tried your suggestion, changing the format of the cell to a number, which worked. But it also worked without having to divide by 100. I set it as no decimal places and result came back as 38. When I changed the format back to percentage, it again went to 3846%. This is quite frustrating lol
– Ian Scott
10 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
@IanScott, percentage takes a decimal fraction and multiplies it by 100 to display it as units of percent. If your calculation is producing a result of 38, you're already multiplying it by 100 within that calculation or starting with units that are already percentages. If you display that as percentage, it gets multiplied by 100 again. You need to either calculate a fraction and then display that as percentage, or use your calculated number as-is and concatenate a percent sign onto it.
– fixer1234
3 hours ago
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%2f1427048%2fwhy-is-excel-calculating-percentages-in-thousands%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