hyperlink

H

Horacio

Alo
Is possible get an hyperlink from a database with a vlookop or other
funcion?
Thank you
Horacio
 
D

Dave Peterson

like...

=hyperlink(vlookup(a1,sheet2!a:b,2,false))

But you'll have to have a valid hyperlink that's returned -- or build it
yourself:

=hyperlink("http://"&vlookup(a1,sheet2!a:b,2,false))
 
Top