J
Jan Kronsell
I have the following data
A B C
School Student Value
My school Peter 5
John 6
Anne 7
...
...
Your School Bill 8
Peter 7
Joan 10
...
No School Bill 11
John 3
Anne 7
The number of students per school varies from a few to several hundred. Is
it possible, using only a formula (no VBA) to return the value of a certain
student of a certain school?
If the schoolname were repeated for each student, it could be done using:
=SUMPRODUCT((A2:A7000=D1)*(B2:B7000=D2)*(C2:C7000)) where D1 is the name of
the school, and D2 the name of the student.
This is something I try help a colleague with, and she tells me, that the
data cannot be changed to repeat schoolname.
Jan
A B C
School Student Value
My school Peter 5
John 6
Anne 7
...
...
Your School Bill 8
Peter 7
Joan 10
...
No School Bill 11
John 3
Anne 7
The number of students per school varies from a few to several hundred. Is
it possible, using only a formula (no VBA) to return the value of a certain
student of a certain school?
If the schoolname were repeated for each student, it could be done using:
=SUMPRODUCT((A2:A7000=D1)*(B2:B7000=D2)*(C2:C7000)) where D1 is the name of
the school, and D2 the name of the student.
This is something I try help a colleague with, and she tells me, that the
data cannot be changed to repeat schoolname.
Jan