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

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
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,110
Messages
6,123,140
Members
449,098
Latest member
Doanvanhieu

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