Reputation: 86
To search for a value address, I have a table attached to the question with values. The values are set at H11, J11, M11, P11 and S11.
The catch is that locations are fixed but values are shuffled at the same address, which means J11 value might to go to H11 or P11 to J11, and so on.
I see I can get the address if they're side by side, but I can't figure out when they're in different cells like the example I have attached.
I appreciate if you can help me with the possible formulas
Upvotes: 0
Views: 44
Reputation: 27438
As mentioned by OP that worked for them, hence posted in answers.
Try:
• Formula used in cell D12
=ADDRESS(11,MATCH(B12,$11:$11,0))
Or,
• Formula used in cell C12
=ADDRESS(ROW($11:$11),MATCH(B12,$11:$11,0))
Upvotes: 1