Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Question:
Is there a VB command or a way in Excel to prepend and postpend data in an Excel cell. For example, let's say I have a column with the following numbers 11888 3623 1234 How can I format all the cells in that column so that numbers have an * at the beginning and at the end? So my results would look like this. *11888* *3623* *1234* |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
David:
you can do the following Range("a2")= "*" & range("a2") & "*" assume that the first row of data is in row a2 you will have to go over all cell to do the change. Andres -----Original Message----- Question: Is there a VB command or a way in Excel to prepend and postpend data in an Excel cell. For example, let's say I have a column with the following numbers 11888 3623 1234 How can I format all the cells in that column so that numbers have an * at the beginning and at the end? So my results would look like this. *11888* *3623* *1234* . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
See one other guess at your other post.
David Neustadt wrote: Question: Is there a VB command or a way in Excel to prepend and postpend data in an Excel cell. For example, let's say I have a column with the following numbers 11888 3623 1234 How can I format all the cells in that column so that numbers have an * at the beginning and at the end? So my results would look like this. *11888* *3623* *1234* -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count pending issues prior to 1/15/2009 | Excel Discussion (Misc queries) | |||
I need to show the last number in a rows in the total pending row | New Users to Excel | |||
Conditional Format Pending Text Input | Excel Discussion (Misc queries) | |||
HOW CAN I MAKE OUR PENDING SHIPMENT SHEDULE IN EXCEL? | Excel Discussion (Misc queries) | |||
Filter one column for all "Pending" | Excel Worksheet Functions |