Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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 wrote in message ... 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
![]() |
|||
|
|||
![]()
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 wrote in message ... 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
![]() |
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel should allow multiple hyperlinks in a single cell | Excel Discussion (Misc queries) | |||
how to combine multiple files in ms excel | Excel Discussion (Misc queries) | |||
How to Link named ranges from multiple Workbooks into a single Wo. | Excel Discussion (Misc queries) | |||
Can vlookup return multiple matches in a single cell? | Excel Discussion (Misc queries) | |||
How can I combine multiple cells in Excel? | Excel Discussion (Misc queries) |