Extracting currency amounts from a string of numbers and text

MichaelE7

New Member
Joined
Nov 16, 2018
Messages
1
Hi there,
I'm looking for a formula to extract a currency amount from a string of numbers and text.

Eg:
TextIsHereWithSomeNumber3.5m - $445,544.21

I am only looking for the dollar amount.

Is it possible to extract this info with a formula or will I have to do this manually?

thanks

<tbody>
</tbody>
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Hi,

You only showed One sample, which may Not be representative of your actual data, this works if All your data is in the Same format as your sample, where the Currency is at the End of the text string:


Book1
ABCD
1TextIsHereWithSomeNumber3.5m - $445,544.21$445,544.21$445,544.21
2
3^ Format as
4Currency
Sheet365
Cell Formulas
RangeFormula
C1=RIGHT(SUBSTITUTE(A1," ",REPT(" ",30)),30)+0
D1=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",30)),30))


C1 formula converts results to Real Numbers, format cell as currency if desired.
D1 formula Only extracts the currency value from the original Text String, and remains as Text.
 
Upvote 0
Alternate formulas included:


Book1
ABCDEFG
1TextIsHereWithSomeNumber3.5m - $445,544.21$445,544.21$445,544.21$445,544.21$445,544.21
2
3^ Format as^ Format as
4CurrencyCurrency
Sheet365
Cell Formulas
RangeFormula
C1=RIGHT(SUBSTITUTE(A1," ",REPT(" ",30)),30)+0
D1=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",30)),30))
F1=MID(A1,FIND("- ",A1)+2,30)+0
G1=MID(A1,FIND("- ",A1)+2,30)


C1 and F1 formula converts results to Real Numbers, format cell as currency if desired.
D1 and G1 formula Only extracts the currency value from the original Text String, and remains as Text.

F1 and G1 formula assumes there's Always a hyphen "-" before the currency value and there's No other hyphens within the original Text string.
 
Last edited:
Upvote 0
Got your PM, please continue questions relevant to your post within the thread, that way you'll get more responses from Other possible helpers.

For the strings you provided in the PM, C1 and D1 formulas worked for me, if it doesn't work for you, please provide the incorrect results and/or Errors:


Book1
ABCD
1TextIsHereWithSomeNumber3.5m - $445,544.21$445,544.21$445,544.21
2XERION 5000 TRAC - Tier 3a - R 1,123,110.05$1,123,110.051,123,110.05
3JAGUAR 960 - Tier 3 - R 1,568,136.00$1,568,136.001,568,136.00
4BRUTTUS 6000 4M with Topper 4500 DGPS Variable Rate SHS (Independent Hyd Sys) with Transport Wheels - R 123,150.21$123,150.21123,150.21
5
6^ Format as
7Currency
Sheet365
Cell Formulas
RangeFormula
C1=RIGHT(SUBSTITUTE(A1," ",REPT(" ",30)),30)+0
D1=TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",30)),30))
 
Upvote 0

Forum statistics

Threads
1,215,325
Messages
6,124,254
Members
449,149
Latest member
mwdbActuary

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