Summing Cells together - How do I exclude anything within parentheses?

chenowethtruss

New Member
Joined
Apr 23, 2022
Messages
2
Office Version
  1. 2011
Platform
  1. Windows
I'm creating a pricing document for deliveries (if that helps). I need to only include the pricing outside of the parentheses in Column9 - Surcharge Fee (I3) (excluding the milage shown within) to add it to the rest of the delivery charge in Column 5. I am unclear on what I should be instructing other than C4+D4+F4 & then Colum9 is I3 & I am lost on how to go from there. I'm sure this is elementary for most; but I seem to only be finding videos that explain how to only extract & add the information from within the parentheses and feel like I am stuck down a rabbit hole. And an advance Thank you! for anyone that can give me a workable suggestion.
Column1Column2Column3Column4Column5Column6Column7Column8Column9
Job ## Of DeliveriesProfessional Service Fee# of Load/Unload FeesTotal MilesCost Per MileFuel Surcharge TypeDelivery RangeSurcharge Fee
19404​
1​
No
0​
160​
3.23​
Premium151-200$158.00 (151-200)
0​
0​
160​
516.8​
Total Delivery Charge
#REF!​
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
@chenowethtruss Welcome
One way to extract the value from text of that specific pattern would be as below.
Book1
I
3
4$158.00 (151 - 200)
5158.00
Gradings_2
Cell Formulas
RangeFormula
I5I5=IFERROR(MID(I4,2,FIND("(",I4,1)-2),"")


Hope that helps.
 
Upvote 0
Solution
One example.

Book1
CDEFGHIJK
1Service FeeLoad Unload FeeTotal milesCost/MileMileage ChargeSurcharge FeeJust the NumberTotal Fee
210201603.23516.8$158.00 (151-200)158704.8
Sheet1
Cell Formulas
RangeFormula
G2G2=F2*E2
J2J2=VALUE(LEFT(I2,FIND("(",I2)-1))
K2K2=C2+D2+G2+J2
 
Upvote 0

Forum statistics

Threads
1,215,237
Messages
6,123,803
Members
449,127
Latest member
Cyko

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