Forum Discussion
tcaseria
Aug 04, 2022Copper Contributor
Find Cell Reference of a Value Within a Table
I'm looking to input a value in a cell and have a formula find the cell reference of that value within a table. Here is a screenshot to show what I mean.
6 Replies
- Patrick2788Silver Contributor
Perhaps this (Ctrl_Shift_Enter):
=ADDRESS(SMALL(IF(range=K2,ROW(range)),1),SMALL(IF(range=K2,COLUMN(range)),1),4) If you don't have the very latest version of Excel:
=ADDRESS(MIN(IF(A1:H15=K2,ROW(A1:H15))),MIN(IF(A1:H15=K2,COLUMN(A1:H15))))
- Patrick2788Silver Contributor
Try this (Range being your data range or named item).
=REDUCE("",range,LAMBDA(a,v,IF(v=K2,ADDRESS(ROW(v),COLUMN(v),4),a)))