extract numbers help

cvgreports

Board Regular
Joined
Jun 28, 2006
Messages
50
I got the following example on a cell A3:

John Smith (JS685V)

And what I need is just the data in between the brackets. I can do a RIGHT(A3,8), but I get the brackets as well and I just need the numbers & letters. I got over 200 entries like this. They all consist of 6 characters both letters and numbers. Thanks for the help.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
I got the following example on a cell A3:

John Smith (JS685V)

And what I need is just the data in between the brackets. I can do a RIGHT(A3,8), but I get the brackets as well and I just need the numbers & letters. I got over 200 entries like this. They all consist of 6 characters both letters and numbers. Thanks for the help.
Try this...

A2 = John Smith (JS685V)

=MID(A2,FIND("(",A2)+1,6)
 
Upvote 0
man you guys rock, VoG your formula working perfectly fine. So many ways to create a formula. I love it... :)
 
Upvote 0

Forum statistics

Threads
1,224,607
Messages
6,179,871
Members
452,949
Latest member
Dupuhini

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