Extract multiple dollar amounts from text in a cell and add together

TrishaL

Board Regular
Joined
Jul 9, 2013
Messages
56
Office Version
  1. 2019
Platform
  1. Windows
I have cells where there is text and money amounts. I want to extract the money amounts into another cell and if possible, even add the amounts together and give me the total.
Here are couple examples of how it is entered in a cell:
Example 1:
$20,000.00 - Adverse Effect - PAID; $63,000.00 - Tree Loss - PAID; $10,000.00 - Access - PAID; $5,000.00 - Appraisal - PAID; $5,000.00 - Hay Loss - PAID; $5,000.00 - Disturbance - PAID; $5,000.00 - LO Time - PAID; $5,000.00 - Severance - PAID

Example 2:
$12,000.00 - Loss of shelter belt
$7,000.00 - Timber loss
$2,500.00 - Moving equipment
$1,500.00 - Crop loss

Looking for the money to be extracted out so it looks like this: $20,000.00; $63,000.00; $10,000.00; and so on. If possible it would be great to just get the sum of all amounts because my end goal is to pull out the money amount and add together so that I can get a total for all of my rows.

I should point out that not all money is entered the same. There may not be the $ or the .00 or the comma.

If anyone has an idea on if I can do this it would be appreciated. Thank you in advance.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
1) could you add more few samples with money amount without $, without ".00"?
2) Any value within text string, all are treated as money amount?
i.e, "Blah blah5000 , $1000, $2,000, $3,000.00 blah 500 blah"
result = $11,500.00?
 
Upvote 0
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
Thank you. I have done this. I am on office 2019 for Windows.
 
Upvote 0
1) could you add more few samples with money amount without $, without ".00"?
2) Any value within text string, all are treated as money amount?
i.e, "Blah blah5000 , $1000, $2,000, $3,000.00 blah 500 blah"
result = $11,500.00?
Hi
Couple more example types:
Example:
$10,000.00 - Tree loss
Example:
$30,000 - Fencing
Example:
$1000 - Fencing
Example
$3,600.00 - Access Road - PAID; $5,000 - Time/Inconv - PAID; $66,691.20 - Timber - PAID; $5,769.58 - Professional Services (#3) - PAID

I reviewed further and it looks like all money does have the $. Looks like just the comma and .00 are the issue.

Yes, if there is a way to extract as you say above to get the total that would be awesome. Then I can do this in just one step.

Thanks,
 
Upvote 0
I have done this. I am on office 2019 for Windows.
Thanks for updating. (y)

I reviewed further and it looks like all money does have the $. Looks like just the comma and .00 are the issue.

Yes, if there is a way to extract as you say above to get the total that would be awesome. T
You could test this user-defined function. To implement ..
1. Right click the sheet name tab and choose "View Code".
2. In the Visual Basic window use the menu to Insert|Module
3. Copy and Paste the code below (you can use the icon at the top right of the code pane below) into the main right hand pane that opens at step 2.
4. Close the Visual Basic window.
5. Enter the formula as shown in the screen shot below and copy down. You could format that column with $/commas/decimal places as desired
6. Your workbook will need to be saved as a macro-enabled workbook (*.xlsm)

VBA Code:
Function SumDollars(s As String) As Double
  SumDollars = Evaluate(Replace(Replace(Join(Filter(Split(Replace("$0 " & s, vbLf, " ")), "$"), "+"), "$", ""), ",", ""))
End Function

TrishaL.xlsm
AB
1DataSum
2$20,000.00 - Adverse Effect - PAID; $63,000.00 - Tree Loss - PAID; $10,000.00 - Access - PAID; $5,000.00 - Appraisal - PAID; $5,000.00 - Hay Loss - PAID; $5,000.00 - Disturbance - PAID; $5,000.00 - LO Time - PAID; $5,000.00 - Severance - PAID118000
3$12,000.00 - Loss of shelter belt $7,000.00 - Timber loss $2,500.00 - Moving equipment $1,500.00 - Crop loss23000
40
5No dollars0
6$10,000.00 - Tree loss10000
7$30,000 - Fencing30000
8$1000 - Fencing1000
9$3,600.00 - Access Road - PAID; $5,000 - Time/Inconv - PAID; $66,691.20 - Timber - PAID; $5,769.58 - Professional Services (#3) - PAID81060.78
Sheet1
Cell Formulas
RangeFormula
B2:B9B2=SumDollars(A2)
 
Upvote 0
Or, alternative for excel older than version 2019:
VBA Code:
Option Explicit
Function summary(ByVal cell As Range)
Dim s, i&, k&, num, val, comb, sum As Double
s = Split(cell.Value, "$")
For i = 1 To UBound(s)
    k = 0: val = 0: comb = ""
    num = Replace(s(i), ",", "")
    Do While IsNumeric(val) Or val Like "."
        k = k + 1
        val = Mid(num, k, 1)
        comb = comb & val
    Loop
    sum = sum + CDbl(comb)
Next
summary = sum
End Function
Book1.xlsb
AB
1$25,000.00 - Adverse Effect - PAID; $63,000.00 - Tree Loss - PAID; $10,000.00 - Access - PAID; $5,000.00 - Appraisal - PAID; $5,000.00 - Hay Loss - PAID; $5,000.00 - Disturbance - PAID; $5,000.00 - LO Time - PAID; $5,000.00 - Severance - PAID
2$10,000.00 - Tree loss
3$30,000 - Fencing
4No dollar
5$3,600.00 - Access Road - PAID; $5,000 - Time/Inconv - PAID; $66,691.20 - Timber - PAID; $5,769.58 - Professional Services (#3) - PAID
6
7
8123,000.00=summary(A1)
910,000.00=summary(A2)
1030,000.00=summary(A3)
11-=summary(A4)
1281,060.78=summary(A5)
Sheet4
Cell Formulas
RangeFormula
A8:A12A8=summary(A1)
 
Upvote 0
Or, alternative for excel older than version 2019:
Does that imply that some part of my suggestion is not compatible with older versions?

For a looping version I would consider

VBA Code:
Function DollarSum(s As String) As Double
  Dim itm As Variant
 
  For Each itm In Split(Replace(s, ",", ""), "$")
    DollarSum = DollarSum + Val(itm)
  Next itm
End Function
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,373
Messages
6,124,562
Members
449,171
Latest member
jominadeo

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