E
Eric Bohn
My situation is that I have a table like this:
A B C D E
1 Car Boat Plane 20
2 slowest 50 5 150
3 slower 55 8 160
4 slow 60 13 170
5 fast 70 17 190
6 faster 80 20 210
7 fastest 95 30 250
What I want to do is to match a numerical value to one of the values
in the table. I know that the value will equal one and only one value
that exists in the table. I want to return the row and column header
text values and combine them in a single cell.
So for example if the value im trying to match is in cell E1=20, then
I want to return "faster boat".
Is there a way of doing this, perhaps using the index and match
functions?
A B C D E
1 Car Boat Plane 20
2 slowest 50 5 150
3 slower 55 8 160
4 slow 60 13 170
5 fast 70 17 190
6 faster 80 20 210
7 fastest 95 30 250
What I want to do is to match a numerical value to one of the values
in the table. I know that the value will equal one and only one value
that exists in the table. I want to return the row and column header
text values and combine them in a single cell.
So for example if the value im trying to match is in cell E1=20, then
I want to return "faster boat".
Is there a way of doing this, perhaps using the index and match
functions?