Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 217
Default calculating percentages

Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the difference
between the two figures as a percentage? (These two figures represent sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 459
Default calculating percentages

Louise wrote:
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the
difference between the two figures as a percentage? (These two
figures represent sales in two months and I need to know the
difference in percentage terms).

Thank you.
Louise


Hi Louise,

say you have 390 in A1 and 217 in B1, in C1 type:

=(B1-A1)/A1

press Enter, then format as percentage.


--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 143
Default calculating percentages

If i understood right...

A1 = 390
A2 = 217

to get the difference, enter the following formula.

==(A1-A2)/A1

Format cell as percentage.

this means that the sales this month are 46.36% less than last month.

Is this what you need?

"Louise" wrote in message
...
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the difference
between the two figures as a percentage? (These two figures represent
sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 217
Default calculating percentages

that's exactly what i need, thank you.

Louise

"Gary" wrote:

If i understood right...

A1 = 390
A2 = 217

to get the difference, enter the following formula.

==(A1-A2)/A1

Format cell as percentage.

this means that the sales this month are 46.36% less than last month.

Is this what you need?

"Louise" wrote in message
...
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the difference
between the two figures as a percentage? (These two figures represent
sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 143
Default calculating percentages

ur welcome :)

"Louise" wrote in message
...
that's exactly what i need, thank you.

Louise

"Gary" wrote:

If i understood right...

A1 = 390
A2 = 217

to get the difference, enter the following formula.

==(A1-A2)/A1

Format cell as percentage.

this means that the sales this month are 46.36% less than last month.

Is this what you need?

"Louise" wrote in message
...
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the
difference
between the two figures as a percentage? (These two figures represent
sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default calculating percentages

Since we're talking differences, why not use?

==ABS(A1-A2)/A1

Of course A1 shouldn't be 0

HTH
Glenn Rathke


"Louise" wrote in message
...
that's exactly what i need, thank you.

Louise

"Gary" wrote:

If i understood right...

A1 = 390
A2 = 217

to get the difference, enter the following formula.

==(A1-A2)/A1

Format cell as percentage.

this means that the sales this month are 46.36% less than last month.

Is this what you need?

"Louise" wrote in message
...
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the
difference
between the two figures as a percentage? (These two figures represent
sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 266
Default calculating percentages

"Louise" skrev i en meddelelse
...
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the difference
between the two figures as a percentage? (These two figures represent
sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise


Hi Louise

It depends on, what you compare the difference to,
the first month or the second month.

Month A: 390
Month B: 217

Always first find the difference: 390-217=173

Now, If A is 173 larger than B, then B is 173 smaller
then A, because the figure is an absolute value,
but the same is not true for fractions (and % is
hundredths). If C for instance is 20% larger than
F, then it doesn't follow that F is 20% smaller than C.

Here the difference is compared to B.
How many % is A larger than B: (173/217)*100 = 79.7%

and here the difference is compared to A.
How many % is B smaller than A: (173/390)*100 = 44.4%

--
Best regards
Leo Heuser

Followup to newsgroup only please.



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 217
Default calculating percentages

Thank you for your reply, wow, this way sounds pretty complicated.....

It will be easier for me to use the answer in the previous posts.

Thanks again.
Louise

"Leo Heuser" wrote:

"Louise" skrev i en meddelelse
...
Hi all

I'm sure this will be an easy calculation for most of you...........

If I have two numbers, ie. 390 and 217, how can I calculate the difference
between the two figures as a percentage? (These two figures represent
sales
in two months and I need to know the difference in percentage terms).

Thank you.
Louise


Hi Louise

It depends on, what you compare the difference to,
the first month or the second month.

Month A: 390
Month B: 217

Always first find the difference: 390-217=173

Now, If A is 173 larger than B, then B is 173 smaller
then A, because the figure is an absolute value,
but the same is not true for fractions (and % is
hundredths). If C for instance is 20% larger than
F, then it doesn't follow that F is 20% smaller than C.

Here the difference is compared to B.
How many % is A larger than B: (173/217)*100 = 79.7%

and here the difference is compared to A.
How many % is B smaller than A: (173/390)*100 = 44.4%

--
Best regards
Leo Heuser

Followup to newsgroup only please.




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 266
Default calculating percentages

"Louise" skrev i en meddelelse
...
Thank you for your reply, wow, this way sounds pretty complicated.....

It will be easier for me to use the answer in the previous posts.

Thanks again.
Louise

You're welcome.
I tried to explain the mechanics of how to get a number
in percent of another number so you didn't have to
ask the next time you had a similar problem. Obviously
I didn't succeed ;-)

Leo Heuser


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Calculating percentages in pivot tables on subtotals David Ruderman - Chapman University Excel Worksheet Functions 1 November 24th 05 04:54 PM
calculating percentages msdobe Excel Discussion (Misc queries) 6 July 29th 05 04:46 PM
Calculating Percentages tifosi3 Excel Discussion (Misc queries) 7 July 11th 05 08:42 PM
Calculating Percentages in a Range Allen7575 Excel Worksheet Functions 3 April 11th 05 09:31 PM
Calculating Percentages with Variables tssjhs Excel Worksheet Functions 1 January 28th 05 01:27 AM


All times are GMT +1. The time now is 12:27 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"