Doing multiple additions, summing results and timesing by other values in a single cell

Cris4py

New Member
Joined
Feb 18, 2012
Messages
23
This must be so simple but I have struggled with this sort of thing for so long now and would appreciate any help you can give me.

What I am trying to do is, times a field by a percentage and the add them together { Sum(A1*B1)+A1 } and then times the result by another cell, which is another percentage, and then add that to the sum of the first to get a total in a single cell. If I was writing it I would write it something like this;

A1 B1 B1 B2 A2 (end total)
£0.061 x 6.6% + £0.061 = £0.065 x 2% + £0.065 = £0.066

Really appreciate any help you can give me as I'm sure you should be able to do this in a single cell and not have to do this over 2 or 3.

Thanks
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Is this what you're after ?

=(0.061*(6.6%+1))*(2%+1)
 
Upvote 0
Thanks but not quite, was the way I was describing it..

I have a cost price that I need to times by a fixed cost percentage and then add a profit percentage to the sum of the cost price plus the fixed cost price, to it to get a cross charge cost
ABCD
16.6%2%
2Cost PriceFixed CostProfitCross Charge
3£0.061£0.004£0.001£0.066
4=Sum(A3*B1)=Sum(A3:B3)*C1=Sum(A3:C3)
 
Upvote 0
If you just want the Cross Charge, try

=A3*(1+B1)*(1+C1)

1588239155023.png
 
Upvote 0
Doesn't the formula in cell E2 in the below example gives what you're trying to acheive ?

Book1
ABCDE
16.60%2.00%
2Cost PriceFixed CostProfitCross Charge
30.0610.0040.0010.0660.066
40.0040260.00130.066
Sheet1
Cell Formulas
RangeFormula
E3E3=(A3*($B$1+1))*($C$1+1)
B4B4=SUM(A3*B1)
C4C4=SUM(A3:B3)*C1
D4D4=SUM(A3:C3)
 
Upvote 0
Yes it Does.

I was confused by the +1 part and linked it back to the cell ref. When you do this, does it mean add it to the previous value in the formula?

Thanks for your help
 
Upvote 0

Forum statistics

Threads
1,215,493
Messages
6,125,134
Members
449,206
Latest member
burgsrus

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