I have a table that looks like the following
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]16[/TD]
[TD]21[/TD]
[TD]55[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]Alex[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Lisa[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
What I need to be able to do is look for the letter (column title) that corresponds to a score of 55 for Mary.
In other words, search for Mary's scores, find her score of 55 and which letter corresponds to that.
I've tried combinations of index-match and vlookup without any luck so far. Obviously, the most common situation is finding the 55 using the name and column location so I understand that this is a slightly difference use case.
Any help is appreciated.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Mary[/TD]
[TD]16[/TD]
[TD]21[/TD]
[TD]55[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]Alex[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Lisa[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
What I need to be able to do is look for the letter (column title) that corresponds to a score of 55 for Mary.
In other words, search for Mary's scores, find her score of 55 and which letter corresponds to that.
I've tried combinations of index-match and vlookup without any luck so far. Obviously, the most common situation is finding the 55 using the name and column location so I understand that this is a slightly difference use case.
Any help is appreciated.