View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
duane duane is offline
external usenet poster
 
Posts: 64
Default How do I ? math/excel question

assuming you want to know what next score is required to bring average to
date to 13, and the data is in columns a and b starting in row 4, the
following in cell b17 results in 31.55 for the date 21/7/06, which brings
the 2006 ytd average to 13. This could be copied donw as necessary. Watch
the format on your dates.

=13*COUNTA($A$4:$A17)-SUMPRODUCT((RIGHT(A$4:$A16,2)=RIGHT(A17,2))*($B$4: $B16))

"Madduck" wrote:

Hi team,

I have the below table and want to produce a figure that will show a rolling
target.
ie: the target for 12 months is 13... for one month someone gets a score of
11. what will be the target score next month to bring them back on target to
end up with 13?

Date TRUE CALLS score to get avg of 13
20/1/2006 11.91
3/2/2006 11.23
17/2/2006 11.33
3/3/2006 11.35
17/3/2006 11.41
31/3/2006 11.60
14/4/2006 11.91
28/4/2006 11.78
12/5/2006 11.68
26/5/2006 11.55
9/6/2006 11.57
23/6/2006 11.58
7/7/2006 11.55
21/7/2006
4/8/2006
18/8/2006
1/9/2006
15/9/2006
29/9/2006
13/10/2006
27/10/2006
10/11/2006
24/11/2006

Your help is much aprieciated