Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I extract the middle word in a cell ? I'm copying the value from cell
"B91" and pasting in "H3" the original value shows C:\elandata\Dataset\101504-1\Blank.001 I need to keep 101504-1 I got the first part working: 101504-1\Blank.001 How can I get rid of \Blank.001? I don't know how many characters are going to be after "\", it changes all the time. Sub GetName () Dim X As String Dim inside As Long Dim D As String Range("H3").Value = Range("B91").Value X = Range("H3").Value inside = InStr(X, "\") D = (Trim$(Mid$(X, inside + 18))) Range("H3").Value = D End Sub Thanks in advance -- gaba :) |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Add a character to the middle of a text string | Excel Discussion (Misc queries) | |||
Adding contents of another cell to the middle of a line of text | Excel Worksheet Functions | |||
How to extract text from middle of a string | Excel Worksheet Functions | |||
Extract text in middle using Mid and Find or Search | Excel Discussion (Misc queries) | |||
Can you put a formula in the middle of text? | Excel Discussion (Misc queries) |