+ Reply to Thread
Results 1 to 54 of 54

text manipulation

  1. #1
    Registered User
    Join Date
    07-13-2005
    Posts
    4

    text manipulation

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

    Thanks in advance,

    eenstudent

  2. #2
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  3. #3
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  4. #4
    Registered User
    Join Date
    07-13-2005
    Posts
    4
    Very helpful -- thank you!!!

  5. #5
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  6. #6
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  7. #7
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  8. #8
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  9. #9
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  10. #10
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  11. #11
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  12. #12
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  13. #13
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  14. #14
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  15. #15
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  16. #16
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  17. #17
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  18. #18
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  19. #19
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  20. #20
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  21. #21
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  22. #22
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  23. #23
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  24. #24
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  25. #25
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  26. #26
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  27. #27
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  28. #28
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  29. #29
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  30. #30
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  31. #31
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  32. #32
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  33. #33
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  34. #34
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  35. #35
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  36. #36
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  37. #37
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  38. #38
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  39. #39
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  40. #40
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  41. #41
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  42. #42
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  43. #43
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  44. #44
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  45. #45
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  46. #46
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  47. #47
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  48. #48
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  49. #49
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  50. #50
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

  51. #51
    Bernie Deitrick
    Guest

    Re: text manipulation

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

    HTH,
    Bernie
    MS Excel MVP


    "eenstudent" <[email protected]> wrote in message
    news:[email protected]...
    >
    > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > convert that name to a url format (e. g. "www.blooper.com"), what
    > formula/function must I use?
    >
    > Thanks in advance,
    >
    > eenstudent
    >
    >
    > --
    > eenstudent
    > ------------------------------------------------------------------------
    > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >




  52. #52
    Bernie Deitrick
    Guest

    Re: text manipulation

    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" <deitbe @ consumer dot org> wrote in message
    news:[email protected]...
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    >>
    >> If I have in a given cell a one-word name (e. g. "blooper"), and want to
    >> convert that name to a url format (e. g. "www.blooper.com"), what
    >> formula/function must I use?
    >>
    >> Thanks in advance,
    >>
    >> eenstudent
    >>
    >>
    >> --
    >> eenstudent
    >> ------------------------------------------------------------------------
    >> eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    >> View this thread: http://www.excelforum.com/showthread...hreadid=386808
    >>

    >
    >




  53. #53
    Dave Peterson
    Guest

    Re: text manipulation

    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.)



    Bernie Deitrick wrote:
    >
    > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    >
    > HTH,
    > Bernie
    > MS Excel MVP
    >
    > "eenstudent" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > formula/function must I use?
    > >
    > > Thanks in advance,
    > >
    > > eenstudent
    > >
    > >
    > > --
    > > eenstudent
    > > ------------------------------------------------------------------------
    > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > >


    --

    Dave Peterson

  54. #54
    Dave Peterson
    Guest

    Re: text manipulation

    I didn't see your later enhancement (about the &A1 stuff).

    Sorry,

    Dave Peterson wrote:
    >
    > 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.)
    >
    > Bernie Deitrick wrote:
    > >
    > > =HYPERLINK("www." & A1 & ".com","Click to connect to Blooper")
    > >
    > > HTH,
    > > Bernie
    > > MS Excel MVP
    > >
    > > "eenstudent" <[email protected]> wrote in message
    > > news:[email protected]...
    > > >
    > > > If I have in a given cell a one-word name (e. g. "blooper"), and want to
    > > > convert that name to a url format (e. g. "www.blooper.com"), what
    > > > formula/function must I use?
    > > >
    > > > Thanks in advance,
    > > >
    > > > eenstudent
    > > >
    > > >
    > > > --
    > > > eenstudent
    > > > ------------------------------------------------------------------------
    > > > eenstudent's Profile: http://www.excelforum.com/member.php...o&userid=25192
    > > > View this thread: http://www.excelforum.com/showthread...hreadid=386808
    > > >

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1