Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need update one cell which includes original text and new text.
For example, sheet1 and cell A1 has text " Here we are" I need add new text " Yes, this is my place" to make Cell A1 contains "Here we are Yes, this is my place" Any code example to do this? Your information is great appreciated, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Aircode:
Sub AppendStringToCellA1 OriginalText = Sheet1.range("A1").value NewText = OriginalText & " Yes, this is my place" Sheet1.range("A1").value = NewText end sub "Souris" wrote in message ... I need update one cell which includes original text and new text. For example, sheet1 and cell A1 has text " Here we are" I need add new text " Yes, this is my place" to make Cell A1 contains "Here we are Yes, this is my place" Any code example to do this? Your information is great appreciated, |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks millions,
"Keith R" wrote: Aircode: Sub AppendStringToCellA1 OriginalText = Sheet1.range("A1").value NewText = OriginalText & " Yes, this is my place" Sheet1.range("A1").value = NewText end sub "Souris" wrote in message ... I need update one cell which includes original text and new text. For example, sheet1 and cell A1 has text " Here we are" I need add new text " Yes, this is my place" to make Cell A1 contains "Here we are Yes, this is my place" Any code example to do this? Your information is great appreciated, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to make SUMPRODUCT work over range that includes text? | Excel Worksheet Functions | |||
How can I recover an original document after I save an update | Excel Discussion (Misc queries) | |||
Text that includes data from a designated cell? | Excel Discussion (Misc queries) | |||
Counting occurences which includes text | Excel Programming | |||
Counting occurences which includes text | Excel Programming |