+ Reply to Thread
Results 1 to 5 of 5

How can I combine multiple characters into a single character?

  1. #1
    Yukon Chin
    Guest

    How can I combine multiple characters into a single character?

    I want to create a new character which is a result of combining multiple
    charaters together into a single character. I remember there was a way in
    EXCEL that I can do that. However, I can no longer find that instruction from
    EXCEL Help anymore.

  2. #2
    Gary Rowe
    Guest

    RE: How can I combine multiple characters into a single character?

    Overstriking characters can be done in MS Word but not in Excel.

    "Yukon Chin" wrote:

    > I want to create a new character which is a result of combining multiple
    > charaters together into a single character. I remember there was a way in
    > EXCEL that I can do that. However, I can no longer find that instruction from
    > EXCEL Help anymore.


  3. #3
    Norman Jones
    Guest

    Re: How can I combine multiple characters into a single character?

    Hi Yukon,

    Possibly, you are looking for the concatenate function:

    myStr = Concatenate(str1,str2,str3....)
    ..
    The & character can also be used to concatente strings, e.g.:

    Sub Test()
    Dim sStr As String

    Range("A1") = "a": Range("A2") = "b": Range("A3") = "c"

    sStr = Range("A1").Value & Range("A2").Value & Range("A3").Value

    range("A4").value = sstr
    MsgBox sStr

    End Sub

    ---
    Regards,
    Norman



    "Yukon Chin" <Yukon Chin@discussions.microsoft.com> wrote in message
    news:830455DE-80FC-4C95-AEFF-6D70C5C6FE7B@microsoft.com...
    >I want to create a new character which is a result of combining multiple
    > charaters together into a single character. I remember there was a way in
    > EXCEL that I can do that. However, I can no longer find that instruction
    > from
    > EXCEL Help anymore.




  4. #4
    Yukon Chin
    Guest

    Re: How can I combine multiple characters into a single character?

    Norman, Thank you for your suggestion. I am not familiar with VBA. However, I
    will try your method. Regards.
    Yukon

    "Norman Jones" wrote:

    > Hi Yukon,
    >
    > Possibly, you are looking for the concatenate function:
    >
    > myStr = Concatenate(str1,str2,str3....)
    > ..
    > The & character can also be used to concatente strings, e.g.:
    >
    > Sub Test()
    > Dim sStr As String
    >
    > Range("A1") = "a": Range("A2") = "b": Range("A3") = "c"
    >
    > sStr = Range("A1").Value & Range("A2").Value & Range("A3").Value
    >
    > range("A4").value = sstr
    > MsgBox sStr
    >
    > End Sub
    >
    > ---
    > Regards,
    > Norman
    >
    >
    >
    > "Yukon Chin" <Yukon Chin@discussions.microsoft.com> wrote in message
    > news:830455DE-80FC-4C95-AEFF-6D70C5C6FE7B@microsoft.com...
    > >I want to create a new character which is a result of combining multiple
    > > charaters together into a single character. I remember there was a way in
    > > EXCEL that I can do that. However, I can no longer find that instruction
    > > from
    > > EXCEL Help anymore.

    >
    >
    >


  5. #5
    Yukon Chin
    Guest

    RE: How can I combine multiple characters into a single character?

    Gary, Thank you.
    Yukon

    "Yukon Chin" wrote:

    > I want to create a new character which is a result of combining multiple
    > charaters together into a single character. I remember there was a way in
    > EXCEL that I can do that. However, I can no longer find that instruction from
    > EXCEL Help anymore.


+ 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