Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello, In an Excel File, Sheet1, I have a text in Cell C11 to C200. Does Anyone know a macro to Add "tititi" at the biginning of the tex in these cells (C11 to C200) Ex: In Cell C11 I have "QWERTY" and I want "tititiQWERTY" In Cell C12 I have "AZERTY" and I want "tititiAZERTY" Regards H -- herv ----------------------------------------------------------------------- herve's Profile: http://www.excelforum.com/member.php...fo&userid=2731 View this thread: http://www.excelforum.com/showthread.php?threadid=47372 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub AddPrefix()
Dim cell as Range for each cell in range("C11:C200") cell.value = "tititi" & cell.value Next End Sub -- Regards, Tom Ogilvy "herve" wrote in message ... Hello, In an Excel File, Sheet1, I have a text in Cell C11 to C200. Does Anyone know a macro to Add "tititi" at the biginning of the text in these cells (C11 to C200) Ex: In Cell C11 I have "QWERTY" and I want "tititiQWERTY" In Cell C12 I have "AZERTY" and I want "tititiAZERTY" Regards H. -- herve ------------------------------------------------------------------------ herve's Profile: http://www.excelforum.com/member.php...o&userid=27314 View this thread: http://www.excelforum.com/showthread...hreadid=473726 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I record a macro on a cell that has text but not a text box | Excel Worksheet Functions | |||
Macro - Inserting text to a cell already containg text | Excel Worksheet Functions | |||
Macro - Inserting text to a cell already containg text | Excel Discussion (Misc queries) | |||
Need a macro to insert text in a cell that already has text.Excel | Excel Discussion (Misc queries) | |||
Need a macro to insert text in a cell that already has text.Excel | Excel Programming |