A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Formula for Relative Percent Difference...



 
 
Thread Tools Display Modes
  #1  
Old August 14th, 2009, 09:08 PM posted to microsoft.public.excel.newusers
bnorris
external usenet poster
 
Posts: 1
Default Formula for Relative Percent Difference...

I'm trying to develop a data control chart and I can't find the function for
relative percent difference...I think it might be a nested function that I
need to use? I'm new to this aspect of excel so, please be kind. I have
found the formula
ABS (A-B)/A but I need a function for relative percent difference....how can
I chage the following formula into something that works in excel?

(a-b)/((a+b)/2)*100 = relative percent difference, where a is a data point
in colum A and b is a data point in colum B?

Thanks
  #2  
Old August 14th, 2009, 09:18 PM posted to microsoft.public.excel.newusers
NBVC[_157_]
external usenet poster
 
Posts: 1
Default Formula for Relative Percent Difference...


JIn an empty cell, just replace the a and b with the actual cell
references..and place an = sign in front.

e.g

=(A2-B2)/((A2+B2)/2)*100

where cell A2 contains your a data point and cell B2 contains your b
data point.


--
NBVC

Where there is a will there are many ways.

'The Code Cage' (http://www.thecodecage.com)
------------------------------------------------------------------------
NBVC's Profile: http://www.thecodecage.com/forumz/member.php?userid=74
View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=125550

  #3  
Old August 14th, 2009, 11:49 PM posted to microsoft.public.excel.newusers
joeu2004
external usenet poster
 
Posts: 1,748
Default Formula for Relative Percent Difference...

"bnorris" wrote:
(a-b)/((a+b)/2)*100 = relative percent difference


No. I believe RPD is: abs(a-b) / ( (a+b)/2 ) * 100. See
http://en.wikipedia.org/wiki/Percent_difference .

In Excel, that can be written:

=ABS(A1-B1) / AVERAGE(A1,B1)

formatted as Percentage. Alternatively:

=2*ABS(A1-B1) / (A1 + B1)

again formatted as Percentage.


----- original message -----

"bnorris" wrote in message
...
I'm trying to develop a data control chart and I can't find the function
for
relative percent difference...I think it might be a nested function that I
need to use? I'm new to this aspect of excel so, please be kind. I have
found the formula
ABS (A-B)/A but I need a function for relative percent difference....how
can
I chage the following formula into something that works in excel?

(a-b)/((a+b)/2)*100 = relative percent difference, where a is a data
point
in colum A and b is a data point in colum B?

Thanks


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:59 PM.


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