• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Excel and how it Rounds

tenchie

New Member
I am running a spreadsheet - that I am keeping track of the perecent of data - I have codes set up so as I enter the reason (code) it automatically updates - works like a charm - however, today I notice that my figures do not total 100 percent (they have up to this point) and I'm sure it has something to do with how the columns are configured to round?


Can anyone help?


thanks very much :)

[pre]
Code:
Code	Total	Percent of Total
1	1	14%
2	1	14%
3	0	0%
4	0	0%
5	1	14%
6	4	57%
7	99%
[/pre]
 
Can you post the formulas you are using? Or are you using a PivotTable? Otherwise we are guessing blind. IF this was a PivotTable, here's how it should be looking:

[pre]
Code:
Code       	Score   % of Total
1	        1	14.29%
2	        1	14.29%
3	        0	0.00%
4       	0	0.00%
5       	1	14.29%
6       	4	57.14%
Grand Total	7	100.00%
[/pre]
Note that you need the decimal portion of each number to get the last 1%.
 
Back
Top