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

I am trying to calculate the difference between two percentages but it's
using the full decimal which is not the result I need. For example, I have
77% and 76%. I want the result to be 1% but because it is using the full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The calculation
is correct, but how can I create the formula so it comes out as 1%? I tried
rounding up/down, but not working.
Any help is appreciated.
Chris

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Percentage Calculation

Hi,

Try this

=INT((C10-C11)*100)/100

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
I am trying to calculate the difference between two percentages but it's
using the full decimal which is not the result I need. For example, I have
77% and 76%. I want the result to be 1% but because it is using the full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The
calculation
is correct, but how can I create the formula so it comes out as 1%? I
tried
rounding up/down, but not working.
Any help is appreciated.
Chris

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 788
Default Percentage Calculation

thank you- It worked on that one, but there are others that it did not work.
Wondering if there one formula that would work on all. The other one is
(73%)72.640 - (80%)80.336 which comes up 8 with that formula. Thanks again.

"Ashish Mathur" wrote:

Hi,

Try this

=INT((C10-C11)*100)/100

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
I am trying to calculate the difference between two percentages but it's
using the full decimal which is not the result I need. For example, I have
77% and 76%. I want the result to be 1% but because it is using the full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The
calculation
is correct, but how can I create the formula so it comes out as 1%? I
tried
rounding up/down, but not working.
Any help is appreciated.
Chris

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Percentage Calculation

Hi,

Try this

=ROUNDDOWN((D7-E7)*100,0)

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
thank you- It worked on that one, but there are others that it did not
work.
Wondering if there one formula that would work on all. The other one is
(73%)72.640 - (80%)80.336 which comes up 8 with that formula. Thanks
again.

"Ashish Mathur" wrote:

Hi,

Try this

=INT((C10-C11)*100)/100

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
I am trying to calculate the difference between two percentages but
it's
using the full decimal which is not the result I need. For example, I
have
77% and 76%. I want the result to be 1% but because it is using the
full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The
calculation
is correct, but how can I create the formula so it comes out as 1%? I
tried
rounding up/down, but not working.
Any help is appreciated.
Chris

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Percentage Calculation

Rounding should work. Try:

=round(c11,2)-round(c10,2)

Regards,
Fred

"Chris" wrote in message
...
thank you- It worked on that one, but there are others that it did not
work.
Wondering if there one formula that would work on all. The other one is
(73%)72.640 - (80%)80.336 which comes up 8 with that formula. Thanks
again.

"Ashish Mathur" wrote:

Hi,

Try this

=INT((C10-C11)*100)/100

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
I am trying to calculate the difference between two percentages but
it's
using the full decimal which is not the result I need. For example, I
have
77% and 76%. I want the result to be 1% but because it is using the
full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The
calculation
is correct, but how can I create the formula so it comes out as 1%? I
tried
rounding up/down, but not working.
Any help is appreciated.
Chris




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Percentage Calculation

Try

=FLOOR(C10-C11,0.01)
and format to %

If this post helps click Yes
---------------
Jacob Skaria


"Chris" wrote:

thank you- It worked on that one, but there are others that it did not work.
Wondering if there one formula that would work on all. The other one is
(73%)72.640 - (80%)80.336 which comes up 8 with that formula. Thanks again.

"Ashish Mathur" wrote:

Hi,

Try this

=INT((C10-C11)*100)/100

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
I am trying to calculate the difference between two percentages but it's
using the full decimal which is not the result I need. For example, I have
77% and 76%. I want the result to be 1% but because it is using the full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The
calculation
is correct, but how can I create the formula so it comes out as 1%? I
tried
rounding up/down, but not working.
Any help is appreciated.
Chris

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 39
Default Percentage Calculation

This would be my answer since the displayed figure usually follow simple
rounding.

Fred Smith wrote:
Rounding should work. Try:

=round(c11,2)-round(c10,2)

Regards,
Fred

thank you- It worked on that one, but there are others that it did not
work.

[quoted text clipped - 21 lines]
Any help is appreciated.
Chris


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200909/1

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 788
Default Percentage Calculation

Thanks to all. Just what I was looking for. Chris

"Fred Smith" wrote:

Rounding should work. Try:

=round(c11,2)-round(c10,2)

Regards,
Fred

"Chris" wrote in message
...
thank you- It worked on that one, but there are others that it did not
work.
Wondering if there one formula that would work on all. The other one is
(73%)72.640 - (80%)80.336 which comes up 8 with that formula. Thanks
again.

"Ashish Mathur" wrote:

Hi,

Try this

=INT((C10-C11)*100)/100

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Chris" wrote in message
...
I am trying to calculate the difference between two percentages but
it's
using the full decimal which is not the result I need. For example, I
have
77% and 76%. I want the result to be 1% but because it is using the
full
decimals (77%= 77.270) and (76%=75.639) it's calculating 2%. The
calculation
is correct, but how can I create the formula so it comes out as 1%? I
tried
rounding up/down, but not working.
Any help is appreciated.
Chris



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
percentage calculation rpi929 Excel Worksheet Functions 3 July 29th 09 06:58 PM
Percentage calculation mmacnz Excel Discussion (Misc queries) 3 October 22nd 07 05:54 AM
percentage calculation Gabriel Excel Discussion (Misc queries) 1 August 28th 06 09:31 AM
'of' percentage with calculation Steve Crowther Excel Discussion (Misc queries) 2 May 22nd 06 09:58 AM
Percentage Calculation clandis Excel Worksheet Functions 5 July 21st 05 07:38 PM


All times are GMT +1. The time now is 10:06 PM.

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

About Us

"It's about Microsoft Excel"