View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
travis[_3_] travis[_3_] is offline
external usenet poster
 
Posts: 58
Default Using an array formula as a hyperlink cell reference

The following array formula gives as output the name of a cell

{="'Sheet 2'!H"&MATCH(C1&D$39,'Sheet 2'!A:A&'Sheet 2'!C:C,0)}

Where C1 and D$39 are an array variable concatenated out of two
different columns and Sheet 2 is a sheet I'm searching for that
combination of variables (i.e. a payment by a certain payer on a
certain date). The result of this particular formula is 'Sheet 2'!
H842 because that particular combination of values occurs in row 842.

I want to put the cursor into 'Sheet 2'!H842 with a hyperlink, or
something like a hyperlink, so I can put a column of "Click to go to
this payment" links next to a pivot table, or better yet inside the
pivot table itself.

But my attempts to use this formula as a cell reference aren't
working, perhaps because arrays don't work in hyperlink cell
references.

So how do I do it?

Travis