I have spreadsheet of data that is set up as follows (I haven't populated the whole table with scores but hopefully you get the idea):
[TABLE="width: 500"]
<tbody>[TR]
[TD]Area
[/TD]
[TD]Score Type
[/TD]
[TD]Subject 1
[/TD]
[TD]Subject 1
[/TD]
[TD]Subject 1
[/TD]
[TD]Subject 2
[/TD]
[TD]Subject 2
[/TD]
[TD]Subject 3
[/TD]
[TD]Subject 3
[/TD]
[/TR]
[TR]
[TD]A
[/TD]
[TD]Learner
[/TD]
[TD]4.5
[/TD]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[TD]1
[/TD]
[TD]5
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]A
[/TD]
[TD]LM
[/TD]
[TD]3.2
[/TD]
[TD]4
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[TD]2.5
[/TD]
[TD]3
[/TD]
[TD]1.5
[/TD]
[/TR]
[TR]
[TD]A
[/TD]
[TD]Average
[/TD]
[TD]3.9
[/TD]
[TD]3.5
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[TD]1.8
[/TD]
[TD]4
[/TD]
[TD]0.8
[/TD]
[/TR]
[TR]
[TD]B
[/TD]
[TD]Learner
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]B
[/TD]
[TD]LM
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]B
[/TD]
[TD]Average
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C
[/TD]
[TD]Learner
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C
[/TD]
[TD]LM
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C
[/TD]
[TD]Average
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
The data set is much bigger in real life. I need to find the average scores by area, score type and subject i.e. average if area =a score type = learner and subject = subject 1
I have tried using arrays but got the error "Excel ran out of resources while attmempting to calculate one or more formulas. As a result, these formulas cannot be evaluated".
I have therefore been trying to use sum product but just can't work out how to write the formula. I am also still getting the above error which is making it hard to know if I'm along the right lines with the sumproduct formula (as I can't see if it is calculating correctly). If I can get the formula right I think I can then break the formula down in to bits and put these helper cells to avoid getting the error? Or is there a better way of working out the averages?
Any help would be greatly appreciated
Thanks
[TABLE="width: 500"]
<tbody>[TR]
[TD]Area
[/TD]
[TD]Score Type
[/TD]
[TD]Subject 1
[/TD]
[TD]Subject 1
[/TD]
[TD]Subject 1
[/TD]
[TD]Subject 2
[/TD]
[TD]Subject 2
[/TD]
[TD]Subject 3
[/TD]
[TD]Subject 3
[/TD]
[/TR]
[TR]
[TD]A
[/TD]
[TD]Learner
[/TD]
[TD]4.5
[/TD]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[TD]1
[/TD]
[TD]5
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]A
[/TD]
[TD]LM
[/TD]
[TD]3.2
[/TD]
[TD]4
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[TD]2.5
[/TD]
[TD]3
[/TD]
[TD]1.5
[/TD]
[/TR]
[TR]
[TD]A
[/TD]
[TD]Average
[/TD]
[TD]3.9
[/TD]
[TD]3.5
[/TD]
[TD]2
[/TD]
[TD]4
[/TD]
[TD]1.8
[/TD]
[TD]4
[/TD]
[TD]0.8
[/TD]
[/TR]
[TR]
[TD]B
[/TD]
[TD]Learner
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]B
[/TD]
[TD]LM
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]B
[/TD]
[TD]Average
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C
[/TD]
[TD]Learner
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C
[/TD]
[TD]LM
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C
[/TD]
[TD]Average
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
The data set is much bigger in real life. I need to find the average scores by area, score type and subject i.e. average if area =a score type = learner and subject = subject 1
I have tried using arrays but got the error "Excel ran out of resources while attmempting to calculate one or more formulas. As a result, these formulas cannot be evaluated".
I have therefore been trying to use sum product but just can't work out how to write the formula. I am also still getting the above error which is making it hard to know if I'm along the right lines with the sumproduct formula (as I can't see if it is calculating correctly). If I can get the formula right I think I can then break the formula down in to bits and put these helper cells to avoid getting the error? Or is there a better way of working out the averages?
Any help would be greatly appreciated
Thanks