A Basic Right(Find formula,

srizki

Well-known Member
Joined
Jan 14, 2003
Messages
1,844
Office Version
  1. 365
Platform
  1. Windows
Hi all,
I need to extract number from the string as follows,
A B
[Sold 411045353]
45353]
[Sold 411045353]
45353]
[Sold 411045353]
45353]
411044924
411044924
411044978
411044978
411044920
411044920
411045039
411045039
[Sold 411045402]
45402]
[Sold 411045379]
45379]
[Sold 411045397]
45397]
[Sold 411045393]
45393]
[Sold 411045378]
45378]
411044893
411044893
[Sold 411045388]
45388]

I am using this basic formula.
'=IFERROR(RIGHT(C922,FIND
(" ",C922)),C922)
That gives me the result on column B. I want the full number, what I am doing wrong?
Thanks


<tbody>
</tbody>
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
How about
=TRIM(RIGHT(SUBSTITUTE(SUBSTITUTE(A2," ", REPT(" ",100)),"]",""),100))*1
 
Upvote 0
Thank you Fluff.
It is working, but I am trying to understand/learn what is going on there in the formula.
 
Last edited:
Upvote 0
Thank you Eric, really appreciated.
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,235
Members
449,092
Latest member
SCleaveland

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