A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Assuming your data as shown above is in A1:D7...
In G1 you could put "Sim-380" (the column heading to be looked-up)
In G2 you could put "a-1.1" (the row heading to be looked-up)
Then in G4 you could use =MATCH(G1,B1:D1,0) to return the "column number"
And in G5 you could use =MATCH(G2,A2:A7,0) to return the "row number"
Then in G6 you could use =INDEX(B2:D7,G5,G4) to return the desired value.
You could merge all that into a single formula like this:
=INDEX($B$2:$D$7,MATCH(G2,$A$2:$A$7,0),MATCH(G1,$B$1:$D$1,0))
Hope that helps.
Cheers
Rich
PS. An alternative, which you might find easier to work with since it contains only one MATCH function, thus can be less confusing, is to use a VLOOKUP function:
=VLOOKUP(G2,$A$1:$D$7,MATCH(G1,$A$1:$D$1,0),FALSE)