I have the following table in Excel:
--------------------------------------------
A B C D E
--------------------------------------------
1 Health Plan
2 Region MC MD CM SL
3 N .5 .7 .9 1.2
4 E .6 1.4 5.3 3.6
--------------------------------------------
I would like to use non-numeric values for rows and columns to index the table as follows:
=Index(B3:E4,N,CM)
should return the value .9
How can this be done?
--------------------------------------------
A B C D E
--------------------------------------------
1 Health Plan
2 Region MC MD CM SL
3 N .5 .7 .9 1.2
4 E .6 1.4 5.3 3.6
--------------------------------------------
I would like to use non-numeric values for rows and columns to index the table as follows:
=Index(B3:E4,N,CM)
should return the value .9
How can this be done?