insert URL and data into cells

B

Brian_M

I have a value which corresponds to a database entry that is web-accessible.
I want to know how to combine the base url with the value in the cell, so
that the new entry in the cell is a hyperlink.

e.g. I have the value "133" in a cell.

The base url is
http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=retrieve&db=gene&list_uids=

The final url needs to me a combination of the two:
http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=retrieve&db=gene&list_uids=133

I'm not sure if I can do this in search-and-replace, or there is another
method.
 
G

Gary''s Student

A very tiny trick:

If A1 contains:
http://www.cnn.com

and B1 contains:
/world/

then in C1:

=HYPERLINK(A1 & B1)
for a nice "clickable" hyperlink

using =A1 & B1 looks nice, but it is "ice cold"
 

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