Hi
I have two columns of data. column A is a "reference number", column B is the "score".
I need to compile (and pick out) batches of 10 "scores" with their "reference numbers" across the data set that have an average score of 12 (can be slightly more but not <12)
[pre]
[/pre]
Would this require a loop? so the first pass would eliminate 10 records, the second pass another 10 records etc
Many thanks for your help
I have two columns of data. column A is a "reference number", column B is the "score".
I need to compile (and pick out) batches of 10 "scores" with their "reference numbers" across the data set that have an average score of 12 (can be slightly more but not <12)
[pre]
Code:
A B
Ref Nr Score
4002 10
4056 8
4023 15
4016 14
4032 7
4100 9
4520 11
4612 23
4912 5
4523 6
4987 12
4321 13
4123 8
1561 7
4646 6
4544 13
4881 20
4008 11
4108 23
4109 5
etc
(several 100)
Would this require a loop? so the first pass would eliminate 10 records, the second pass another 10 records etc
Many thanks for your help