Copying part of cell to another by character reference?

gredo33

New Member
Joined
Mar 23, 2005
Messages
11
If in cell A1:A1000 I have Model names and serial numbers of items like this "Model Name : Serial Number". I would like to copy just the Serial Numbers into B1:B100.

I have tried a formula like =right (a1,5).

This works but the serial number isnt always 5 characters long. And there might be a few charachters after, which I dont need.

So could I just make a formula to copy the next 5 characters after the colon?
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi

Try

Code:
=MID(A1,SEARCH(":",A1)+1,5)

You may have to add 2 rather than 1 if you will always have a space after the colon.

Also, if the serial number isn't always 5 chars long, and there may be a few chars after, is there any way of identifying where the extra chars will start?


Tony
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,857
Members
449,051
Latest member
excelquestion515

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