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 » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Mathematically accurate % calculation for "over-score" scenario



 
 
Thread Tools Display Modes
  #1  
Old November 18th, 2009, 03:17 PM posted to microsoft.public.excel.misc
WildWill
external usenet poster
 
Posts: 62
Default Mathematically accurate % calculation for "over-score" scenario

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!
  #2  
Old November 18th, 2009, 03:39 PM posted to microsoft.public.excel.misc
RonaldoOneNil
external usenet poster
 
Posts: 345
Default Mathematically accurate % calculation for "over-score" scenario

=IF(G25H25,H25/G25+1,IF(G25=H25,H25/G25,H25/G25-1))

"WildWill" wrote:

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!

  #3  
Old November 18th, 2009, 03:54 PM posted to microsoft.public.excel.misc
WildWill
external usenet poster
 
Posts: 62
Default Mathematically accurate % calculation for "over-score" scenari

Thanks RonaldoOneNil

I do however also need it to work correctly for any other single increments
in the numbers, i.e. if I have G25=60 and H25=54, I expect an answer of 110%
performance, and I get 190% with the formula above.

"RonaldoOneNil" wrote:

=IF(G25H25,H25/G25+1,IF(G25=H25,H25/G25,H25/G25-1))

"WildWill" wrote:

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!

  #4  
Old November 18th, 2009, 05:01 PM posted to microsoft.public.excel.misc
Daryl S[_2_]
external usenet poster
 
Posts: 881
Default Mathematically accurate % calculation for "over-score" scenari

WileWill -

=IF(G25H25,1+(G25-H25)/G25,IF(G25=H25,1,H25/G25-1))

--
Daryl S


"WildWill" wrote:

Thanks RonaldoOneNil

I do however also need it to work correctly for any other single increments
in the numbers, i.e. if I have G25=60 and H25=54, I expect an answer of 110%
performance, and I get 190% with the formula above.

"RonaldoOneNil" wrote:

=IF(G25H25,H25/G25+1,IF(G25=H25,H25/G25,H25/G25-1))

"WildWill" wrote:

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!

  #5  
Old November 18th, 2009, 06:25 PM posted to microsoft.public.excel.misc
WildWill
external usenet poster
 
Posts: 62
Default Mathematically accurate % calculation for "over-score" scenari

Hi Daryl S

Not quite: following my example, once I reach a situation of G25=60 and
H25=120, I should hypothetically get an answer of 0%, since it has taken the
member twice as long to achieve the result as defined by the terget (60) -
but it actually returns 100%.

"Daryl S" wrote:

WileWill -

=IF(G25H25,1+(G25-H25)/G25,IF(G25=H25,1,H25/G25-1))

--
Daryl S


"WildWill" wrote:

Thanks RonaldoOneNil

I do however also need it to work correctly for any other single increments
in the numbers, i.e. if I have G25=60 and H25=54, I expect an answer of 110%
performance, and I get 190% with the formula above.

"RonaldoOneNil" wrote:

=IF(G25H25,H25/G25+1,IF(G25=H25,H25/G25,H25/G25-1))

"WildWill" wrote:

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!

  #6  
Old November 18th, 2009, 06:43 PM posted to microsoft.public.excel.misc
Bernie Deitrick
external usenet poster
 
Posts: 2,496
Default Mathematically accurate % calculation for "over-score" scenari

This will give you what you want

=1+(G25-H25)/G25

HTH,
Bernie
MS Excel MVP


"WildWill" wrote in message
...
Hi Daryl S

Not quite: following my example, once I reach a situation of G25=60 and
H25=120, I should hypothetically get an answer of 0%, since it has taken the
member twice as long to achieve the result as defined by the terget (60) -
but it actually returns 100%.

"Daryl S" wrote:

WileWill -

=IF(G25H25,1+(G25-H25)/G25,IF(G25=H25,1,H25/G25-1))

--
Daryl S


"WildWill" wrote:

Thanks RonaldoOneNil

I do however also need it to work correctly for any other single increments
in the numbers, i.e. if I have G25=60 and H25=54, I expect an answer of 110%
performance, and I get 190% with the formula above.

"RonaldoOneNil" wrote:

=IF(G25H25,H25/G25+1,IF(G25=H25,H25/G25,H25/G25-1))

"WildWill" wrote:

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!



  #7  
Old November 19th, 2009, 08:30 AM posted to microsoft.public.excel.misc
WildWill
external usenet poster
 
Posts: 62
Default Mathematically accurate % calculation for "over-score" scenari

Ahhhh Absolution!!! Bernie - thank you so much!

"Bernie Deitrick" wrote:

This will give you what you want

=1+(G25-H25)/G25

HTH,
Bernie
MS Excel MVP


"WildWill" wrote in message
...
Hi Daryl S

Not quite: following my example, once I reach a situation of G25=60 and
H25=120, I should hypothetically get an answer of 0%, since it has taken the
member twice as long to achieve the result as defined by the terget (60) -
but it actually returns 100%.

"Daryl S" wrote:

WileWill -

=IF(G25H25,1+(G25-H25)/G25,IF(G25=H25,1,H25/G25-1))

--
Daryl S


"WildWill" wrote:

Thanks RonaldoOneNil

I do however also need it to work correctly for any other single increments
in the numbers, i.e. if I have G25=60 and H25=54, I expect an answer of 110%
performance, and I get 190% with the formula above.

"RonaldoOneNil" wrote:

=IF(G25H25,H25/G25+1,IF(G25=H25,H25/G25,H25/G25-1))

"WildWill" wrote:

I have G25=60 and H25=30, where a person was given 60 days to perform a task
and he ended up performing the task in 30 days. Thus he has "over-performed"
and scores 150% for that task.

If he completed the task in 60 days, I would have G25=60 and H25=60 and I
would expect a calculated % of 100% performance.

If he completed the task in 90 days, I would have G25=60 and H25=90 and I
would expect a calculated % of 50% performance.

I have tried using (G25/H25)-(H25/G25), whihc works fine for the top example
and gives me 150%, but for all the other combinations it gives me wrong
andswers, i.e. with G25=60 and H25=60 I get 0% and I should get 100%, and
with G25=60 and H25=90 I get -83% and I shoud get 50%.

Please help!



.

 




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 12:42 AM.


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