text manipulation

  • Thread starter Thread starter eenstudent
  • Start date Start date
E

eenstudent

If I have in a given cell a one-word name (e. g. "blooper"), and want t
convert that name to a url format (e. g. "www.blooper.com"), wha
formula/function must I use?

Thanks in advance,

eenstuden
 
=HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")

HTH,
Bernie
MS Excel MVP
 
To be consistent, I guess that should have been

=HYPERLINK("www." & A1 & ".com","Click to connect to " & A1)

HTH,
Bernie
MS Excel MVP


Bernie Deitrick said:
=HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")

HTH,
Bernie
MS Excel MVP
 
I think you'll need http:// to get the link to work:

=HYPERLINK("http://www."&A1&".com","Click to connect to " & A1)

(slight change to the string to show, too.)
 
I didn't see your later enhancement (about the &A1 stuff).

Sorry,
 

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

Back
Top