Running calculation of a frequency

  • Follow


Hi,
On a monthly basis I need to calculate a running frequency of scores, but 
I'm not sure how to do it. For example, Joe receives 3 scores (based on a 1 
to 10 scale) every month and I would like to track what % of those scores are 
9's or 10's. I will need to track this on a cumulative basis.

Jan	Feb	Mar
8	7	10
9	3	9
10	9	9
9	6	10
75%	50%	67% YTD % of 9s and 10s
	
0
Reply Utf 4/28/2010 9:36:01 PM

=COUNTIF(OFFSET($A$2:$L$5,,,,COLUMN()),">=9")/COUNT(OFFSET($A$2:$L$5,,,,COLUMN()))

copy across


"Marcia" wrote:

> Hi,
> On a monthly basis I need to calculate a running frequency of scores, but 
> I'm not sure how to do it. For example, Joe receives 3 scores (based on a 1 
> to 10 scale) every month and I would like to track what % of those scores are 
> 9's or 10's. I will need to track this on a cumulative basis.
> 
> Jan	Feb	Mar
> 8	7	10
> 9	3	9
> 10	9	9
> 9	6	10
> 75%	50%	67% YTD % of 9s and 10s
> 	
0
Reply Utf 4/29/2010 3:06:01 AM


1 Replies
254 Views

(page loaded in 0.052 seconds)

Similiar Articles:














7/17/2012 1:12:29 PM


Reply: