Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Calculate accuracy of original estimate

Hi,
Does anyone have a formula for judging the accuracy of an
initial estimated number against the final result?

e.g. if the estimate was 4 and final result is 5 then the
estimate was 75% accurate.

e.g. if the estimate was 6 and final result is 2 then the
estimate was 33% accurate.

The third scenario I need to cater for is where the
original estimate was 0 and then the final result was 1.
If I use the formula '1-d6/d3' then I get "#DIV/0!"
because you can't divide 1 by 0... The result I am
expecting is -(minus)100%. Similarly, if the original
estimate was 0 and the final result is 2 then the result
should be -(minus)200%

So, does anyone know how I can alter the formula to
accommodate this scenario? (for your reference, the full
formula that I have in the cell is 'IF(D3+D50,1-D6/D3,"")'

I would be most grateful for help as it is driving me
round the bend!

Thanks
Jas

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Calculate accuracy of original estimate

=IF(D3=0,D6,IF(D3+D50,1-D6/D3,""))

Assumes D3 holds the estimate and D6 holds the actual result.

--
Regards,
Tom Ogilvy

"Jas M" wrote in message
...
Hi,
Does anyone have a formula for judging the accuracy of an
initial estimated number against the final result?

e.g. if the estimate was 4 and final result is 5 then the
estimate was 75% accurate.

e.g. if the estimate was 6 and final result is 2 then the
estimate was 33% accurate.

The third scenario I need to cater for is where the
original estimate was 0 and then the final result was 1.
If I use the formula '1-d6/d3' then I get "#DIV/0!"
because you can't divide 1 by 0... The result I am
expecting is -(minus)100%. Similarly, if the original
estimate was 0 and the final result is 2 then the result
should be -(minus)200%

So, does anyone know how I can alter the formula to
accommodate this scenario? (for your reference, the full
formula that I have in the cell is 'IF(D3+D50,1-D6/D3,"")'

I would be most grateful for help as it is driving me
round the bend!

Thanks
Jas



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Calculate accuracy of original estimate

Thanks Tom, I did not mention that D6 is the difference,
D3 is the original and D5 is the final result.
D6 formula is '=ABS(D3-D5'.
Using your formula I get the answer '1' (or 100%). Are you
able to change it?
many thanks
Jas

-----Original Message-----
=IF(D3=0,D6,IF(D3+D50,1-D6/D3,""))

Assumes D3 holds the estimate and D6 holds the actual

result.

--
Regards,
Tom Ogilvy

"Jas M" wrote in

message
...
Hi,
Does anyone have a formula for judging the accuracy of

an
initial estimated number against the final result?

e.g. if the estimate was 4 and final result is 5 then

the
estimate was 75% accurate.

e.g. if the estimate was 6 and final result is 2 then

the
estimate was 33% accurate.

The third scenario I need to cater for is where the
original estimate was 0 and then the final result was 1.
If I use the formula '1-d6/d3' then I get "#DIV/0!"
because you can't divide 1 by 0... The result I am
expecting is -(minus)100%. Similarly, if the original
estimate was 0 and the final result is 2 then the result
should be -(minus)200%

So, does anyone know how I can alter the formula to
accommodate this scenario? (for your reference, the

full
formula that I have in the cell is 'IF(D3+D50,1-

D6/D3,"")'

I would be most grateful for help as it is driving me
round the bend!

Thanks
Jas



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Calculate accuracy of original estimate

=IF(D3=0,-D5,IF(D3+D50,1-D6/D3,""))

produced all the results you have described (format the cell in the formula
as Per Cent.

--
Regards,
Tom Ogilvy
"Jas M" wrote in message
...
Thanks Tom, I did not mention that D6 is the difference,
D3 is the original and D5 is the final result.
D6 formula is '=ABS(D3-D5'.
Using your formula I get the answer '1' (or 100%). Are you
able to change it?
many thanks
Jas

-----Original Message-----
=IF(D3=0,D6,IF(D3+D50,1-D6/D3,""))

Assumes D3 holds the estimate and D6 holds the actual

result.

--
Regards,
Tom Ogilvy

"Jas M" wrote in

message
...
Hi,
Does anyone have a formula for judging the accuracy of

an
initial estimated number against the final result?

e.g. if the estimate was 4 and final result is 5 then

the
estimate was 75% accurate.

e.g. if the estimate was 6 and final result is 2 then

the
estimate was 33% accurate.

The third scenario I need to cater for is where the
original estimate was 0 and then the final result was 1.
If I use the formula '1-d6/d3' then I get "#DIV/0!"
because you can't divide 1 by 0... The result I am
expecting is -(minus)100%. Similarly, if the original
estimate was 0 and the final result is 2 then the result
should be -(minus)200%

So, does anyone know how I can alter the formula to
accommodate this scenario? (for your reference, the

full
formula that I have in the cell is 'IF(D3+D50,1-

D6/D3,"")'

I would be most grateful for help as it is driving me
round the bend!

Thanks
Jas



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default Calculate accuracy of original estimate

Many thanks, it does work now
Cheers!

-----Original Message-----
=IF(D3=0,-D5,IF(D3+D50,1-D6/D3,""))

produced all the results you have described (format the

cell in the formula
as Per Cent.

--
Regards,
Tom Ogilvy
"Jas M" wrote in

message
...
Thanks Tom, I did not mention that D6 is the difference,
D3 is the original and D5 is the final result.
D6 formula is '=ABS(D3-D5'.
Using your formula I get the answer '1' (or 100%). Are

you
able to change it?
many thanks
Jas

-----Original Message-----
=IF(D3=0,D6,IF(D3+D50,1-D6/D3,""))

Assumes D3 holds the estimate and D6 holds the actual

result.

--
Regards,
Tom Ogilvy

"Jas M" wrote in

message
...
Hi,
Does anyone have a formula for judging the accuracy

of
an
initial estimated number against the final result?

e.g. if the estimate was 4 and final result is 5 then

the
estimate was 75% accurate.

e.g. if the estimate was 6 and final result is 2 then

the
estimate was 33% accurate.

The third scenario I need to cater for is where the
original estimate was 0 and then the final result

was 1.
If I use the formula '1-d6/d3' then I get "#DIV/0!"
because you can't divide 1 by 0... The result I am
expecting is -(minus)100%. Similarly, if the original
estimate was 0 and the final result is 2 then the

result
should be -(minus)200%

So, does anyone know how I can alter the formula to
accommodate this scenario? (for your reference, the

full
formula that I have in the cell is 'IF(D3+D50,1-

D6/D3,"")'

I would be most grateful for help as it is driving me
round the bend!

Thanks
Jas



.



.

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
Accuracy Ad Pronk Excel Discussion (Misc queries) 7 December 5th 09 10:06 AM
Formula to calculate differently based on original value Pam Excel Worksheet Functions 6 July 13th 09 04:41 PM
How to indicate that a value is an estimate? couture57 Excel Discussion (Misc queries) 7 March 26th 08 12:43 AM
Auto save replaced my original file and now I need the original? Hols Excel Discussion (Misc queries) 1 August 15th 05 10:34 PM
Accuracy Vyyk Excel Programming 1 September 17th 03 01:07 PM


All times are GMT +1. The time now is 06:29 AM.

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"