Inverse Table Lookup

G

Guest

Excel Lookup functions normally return a Table value based on a row,column
search criteria. I need to return the row, column based on the table value.

Any ideas Appreciated,
Thanks in Advance
 
G

Guest

No. Respectfully, I do not think you understand what I need.

I need a function that returns the ROW, COL position (better word) of a
TABLE value.

LOOKUP gives me the TABLE value of a ROW, COL position.
 
H

Herbert Seidenberg

If your Table is a named array of unique numbers and letters
and your named column and row headers are numbers then find
the column/row of a certain LookupValue with
=SUMPRODUCT((Table=LookupValue)*(ColumnHeader))
=SUMPRODUCT((Table=LookupValue)*(RowHeader))
If LookupValue is text, add " ", like "LookupText"
If the column/row headers are letters or names,
add numbered headers and use LOOKUP to translate.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top