=HYPERLINK("#"&CELL("address", ADDRESS(MATCH(VALUE(B3),QuoteNotes,

S

sarah

=HYPERLINK("#"&CELL("address",
ADDRESS(MATCH(VALUE(B3),QuoteNotes,0),1)),"Test")

What's wrong with this formula? QuoteNotes is a range. I'm attempting to
search for a single cell in that range that has the value of cell B3 (only
one cell in this range does). Then I need to hyperlink to that specific cell
(it's in the same workbook on the second sheet).

Thank you!

sarah
 
J

JE McGimpsey

Try:

=HYPERLINK("#Sheet2!"&ADDRESS(INDEX(QuoteNotes,MATCH(VALUE(B3),
QuoteNotes,FALSE)),COLUMN(QuoteNotes)),"Test")
 
J

JE McGimpsey

Disregard - I misread your intent. Try this instead:

=HYPERLINK("#Sheet2!"&ADDRESS(ROW(QuoteNotes) +
MATCH(B3,QuoteNotes,FALSE)-1,COLUMN(QuoteNotes)),"Test")
 

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