Extract letter and numbers

walkewo

New Member
Joined
Jan 23, 2008
Messages
4
I need to extract the letter C followed by 3 numbers from cell A1 in this file. The code could be anywhere in the description. See example below
PIPING,6"F3-9906-C712-RXV

<tbody>
</tbody>
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Code:
function getCode()
dim i as integer
dim vWord

vWord = activecell.value
i = instr(vWord, "-C")
if i >0 then
   vWord = mid(vWord,i+1)
   i = instr(vWord, "-")
   if i > 0 then
       vWord = left(vWord,i-1)
       getCode = vWord
   else
       getCode = vWord
   endif
endif
end function
 
Upvote 0
try

=MID(A1,SEARCH("-C???-",A1)+2,3)
 
Upvote 0

Forum statistics

Threads
1,215,779
Messages
6,126,853
Members
449,345
Latest member
CharlieDP

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top