Extract a number from the data string in Cell

abdulkharij

New Member
Joined
Feb 26, 2015
Messages
30
Hi Dears,

I would like to ask if it's possible to extract a number 500005 to Cell C2 from the following data string in Cell A2 :

Cost Center: 4545544 Provo

Earning: Miscellaneous (MISC)

Employee: XXXXXXX

Fund: 113 Sponsored Programs

Job Profile: Assistant - BIOL.

Line of Business: LOB002 Traditional

Location: Main Campus

Pay Group: Semi-Monthly Exempt

Position: Assistant, Biology

Program: 200 Sponsored Programs

Run Category: Regular

Simmons Grant: 454545 Davis Educ Fdtn-PLAN Prof Dev

Spend Category: Salaries - Faculty Extra Comp (500005)

<tbody>
</tbody>


Thank you,
ABDEL
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
One example in not much to go one, but assuming it is representative and that the number you want is always located at the end of the text and is always encased in parentheses...

=-TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))
 
Upvote 0
Assuming that the number you want is always at the end and is in parentheses, you can use this formula (for an entry in cell A1):
Code:
=SUBSTITUTE(TRIM(RIGHT(SUBSTITUTE(A1,"(",REPT(" ",255)),255)),")","")
 
Upvote 0
Thank you so much for your help. How about if I want to get the following :
Salaries - Faculty Extra Comp (500005)







One example in not much to go one, but assuming it is representative and that the number you want is always located at the end of the text and is always encased in parentheses...

=-TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",99)),99))
 
Upvote 0
Using Joe4's formula;

Code:
=TRIM(RIGHT(SUBSTITUTE(A1;":";REPT(" ";255));255))

Depending on your Excel settings, change semicolon characters (;) with comma (,)

i.e.;
Code:
=TRIM(RIGHT(SUBSTITUTE(A1,":",REPT(" ",255)),255))
 
Last edited:
Upvote 0
Thank you so much for your help. How about if I want to get the following :
Salaries - Faculty Extra Comp (500005)
 
Upvote 0

Forum statistics

Threads
1,216,551
Messages
6,131,310
Members
449,642
Latest member
jobon

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