Using Vlookup, hyperlinks do not work

T

TG

It seems that vlookup cannot return a working hyperlink.

I have:

A B

1 "link to another spreadsheet in the same workbook"
2 "link to another spreadsheet in the same workbook"
3 "link to another spreadsheet in the same workbook"

as you can see on column A I have the value vlookup will lookup and in
column B is the value (hyperlink) it should return. When vlookup is uses, it
correctly brings up the link name but when i try to click on it it does not
work.
the =hyperlink(vlookup(x,Y:Z,1,false)) does not work either. How can i make
the vlookup function bring in a working hyperlink? is this even possible?
I've looked everywhere and cannot find a solution..

any ideas?

thanks in advance,

TG
 
D

Dave Peterson

Formulas bring back values--not hyperlinks, not formatting, not comments, not
much of anything else.

Depending on the value you bring back, you may be able to use an adjacent cell
and a formula:

=hyperlink("http://"&a1,"Click me")
where A1 is the cell with the =vlookup.

The expression depends on what you're bringing back.
 

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

Similar Threads


Top