0

I want to fetch the value by cell Cross Reference Please see the attachment, For eg: I want to fetch the value "15" by the cross reference "3.00" and "5.00" User inputs 2 values 3.00 and 5.00 in a input field, I need to cross refer the Excel file based on the Column value "5.00" and Row Value "3.00" so output will be "15"

enter image description here

1 Answers1

0

Please try this formula.

=INDEX(MyTable,MATCH(3,INDEX(MyTable,0,1),0),MATCH(5,INDEX(MyTable,1,0),0))

MyTable is a named range equal to A1:G15 in your example. Match(3 and Match(5 are the two variables you wanted to work with. I expect you will feed them to the formula in some way. You can replace them with cell references and enter the numbers in the cells such designated.

Variatus
  • 14,293
  • 2
  • 14
  • 30