Select row in formula in excel 2007

R

rslc

I have a formula that creates a clickable hyperlink to a list on another
sheet, when clicked you are taken to the matched cell however i would like
the formula to select the whole row as opposed to just the cell. this is my
formula
=HYPERLINK("#'validationlists'!a" & MATCH(C17,validationlists!A1:A500,0),
C17)

any help much appreciated

rslc
 
D

Dave Peterson

When you want to select a row, you can use:

Edit|Goto
and type in something like:
187:187

So you could change your formula:

=HYPERLINK("#'validationlists'!"
&MATCH(C17,ValidationLists!A1:A500,0)
&":"
&MATCH(C17,ValidationLists!A1:A500,0),C17)
 
R

rslc

Thank you it works perfectly
rslc
Dave Peterson said:
When you want to select a row, you can use:

Edit|Goto
and type in something like:
187:187

So you could change your formula:

=HYPERLINK("#'validationlists'!"
&MATCH(C17,ValidationLists!A1:A500,0)
&":"
&MATCH(C17,ValidationLists!A1:A500,0),C17)
 

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