Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I forgot to mention that the part number can vary in length which is what is causing me trouble. "Bob Zimski" wrote: I have a cell which contains a part number and a revision level in the format 'ARD010 Rev: 2'. I need to drop the 'Rev: 2' portion in the cell to the right and the existing cell needs to end up with 'ARD010' without any spaces. Any help appreciated. Bob |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if the contents are always in the same format, i.e. a combination of
letters and numbers only, followed by spaces, folowed by 'Rev #', then a formula would suffice If cell A1 contents are (no quotes): 'ARD010 Rev: 2' you could use the formula: =LEFT(A1,FIND(" ",A1)-1) resulting in 'ARD010' brz On 22 June, 15:55, Bob Zimski wrote: I forgot to mention that the part number can vary in length which is what is causing me trouble. "Bob Zimski" wrote: I have a cell which contains a part number and a revision level in the format 'ARD010 * * Rev: 2'. I need to drop the 'Rev: 2' portion in the cell to the right and the existing cell needs to end up with 'ARD010' without any spaces. Any help appreciated. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() You could use text to columns - Highlight the column and go to data/text to columns. From there choose delimited, and specify (space) as your delimiter from the second screen, making sure you tick "treat consecutive delimiters as one" "Bob Zimski" wrote: I forgot to mention that the part number can vary in length which is what is causing me trouble. "Bob Zimski" wrote: I have a cell which contains a part number and a revision level in the format 'ARD010 Rev: 2'. I need to drop the 'Rev: 2' portion in the cell to the right and the existing cell needs to end up with 'ARD010' without any spaces. Any help appreciated. Bob |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Parsing | Excel Discussion (Misc queries) | |||
Instead of Parsing | Excel Discussion (Misc queries) | |||
cell's reference value dependent on another cell's value | Excel Programming | |||
How do I make a cell's contents equal to another cell's contents with macro program? | Excel Programming | |||
Parsing help | Excel Programming |