Formula for figuring percentages of 2 numbers

B

Ball4v

I am trying to remember how to manually figure the percentage of the following:

I have a total of 578 out of that 449 is what percent? Then I need to know
how to calculate it in an excel spread sheet for each column.
 
G

Gord Dibben

=449/578 returns 86% using basic arithmetic.

Your second request is a little vague.

You want a total of column A and total of column B and need a percentage?

=SUM(A1:A10)/SUM(B1:B10) entered in C1

Or maybe =A1/B1 in C1 and copied down to C10

Format all formula cells to percentage.


Gord Dibben MS Excel MVP
 
R

Rick Rothstein \(MVP - VB\)

Just divide, then multiply by 100...

449 / 578 = 0.77681660899654

0.77681660899654 * 100 = 77.681660899654%

In your worksheet though, you can skip the multiplication by 100 because
Excel allows you to format cells as Percentage meaning the value in the cell
would stay 0.77681660899654 but be displayed as 77.68% (where I am assuming
the number of decimal places is set at 2). So, on your worksheet, you would
have something like this...

=A1/B1

which you could copy down to get the fraction relationship of Column A as
related to Column B. Highlight the "answer" column (the one with your
formula), right-click it and select Format Cells from the popup menu that
appears... select Percentage from the list on the Number tab, set the number
of decimal places and click OK.

Rick
 
R

Rick Rothstein \(MVP - VB\)

=449/578 returns 86% using basic arithmetic.

??? I get 77.68% for that.

Rick
 
B

Bill Kuunders

assume 578 is in A1
449is in B1

in C1 .....=B1/A1 format C1 as percentage

or

in D1 ...=100*B1/A1 format D1 as general or a number
 
S

Sandy Mann

Maybe I'm ceboming lysdexic

Did you hear about the dyslexic prostitute? She got a job in a warehouse!

--

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
B

Ball4v

I have a total in column A, B, and C, What I am looking for is the sum of the
three, and then the % of A, B, and C of the total sum.
 
B

Ball4v

Let me try that again. In column A I have a list of 1's giving me a total,
column b I have a list of ones, and C, to = a grand total. Out of the grand
total I need the % of column A, B, and C.
 
R

Rick Rothstein \(MVP - VB\)

Just divide each column's total by the grand total and format the cells to
show Percentages. For example, if your totals are in Row 100 and the Grand
Total is in D100, then

=A100/D100
=B100/D100
=C100/D100

and whatever cells you put these formulas in, Format Cells to Percentage.

Rick
 
B

Ball4v

Excellent, thank you.

Rick Rothstein (MVP - VB) said:
Just divide each column's total by the grand total and format the cells to
show Percentages. For example, if your totals are in Row 100 and the Grand
Total is in D100, then

=A100/D100
=B100/D100
=C100/D100

and whatever cells you put these formulas in, Format Cells to Percentage.

Rick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top