Formula to add range and multiply by two different percents

jasonmd2

New Member
Joined
Feb 13, 2024
Messages
3
Office Version
  1. 2021
Platform
  1. MacOS
I'm trying to add a range and multiply by a percent, and then take that total and multiply that by a different percent and return that result in a cell.

I have data in cells A1:D1 and I want to add them and then multiply that result by the number in cell E1, then take that total and multiply it by the number in cell F1 and then return that result in cell G1.

Here's what I currently have =SUM((A1:D1)*E1,+(A1:D1)*F1+(A7:D7)) and I know it's not doing what I want, lol

Thanks in advance for any help!!
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
In cell G1:
Excel Formula:
=(sum(A1:D1)*E1)*F1

Book1
AB
125
225
325
425
550%
650%
725=(SUM(A1:A4)*A5)*A6
Sheet1
Cell Formulas
RangeFormula
A7A7=(SUM(A1:A4)*A5)*A6
B7B7=FORMULATEXT(A7)
 
Upvote 0
Thanks for the replies guys, but that formula doesn't work, it's returning a result of 23.93 and it should be 1140.69, based on the data set example attached.
 

Attachments

  • Excel data set.png
    Excel data set.png
    22.2 KB · Views: 6
Upvote 0
Your original question did not include adding the original amount. You were adding the Percentages first, and not multiplying them separately:

Book1
ABCDEFG
3512.686022510%30%1140.682
41116.752
Sheet4
Cell Formulas
RangeFormula
G3G3=SUM(A3:D3)*(1+E3)*(1+F3)
G4G4=SUM(A3:D3)*(1+(E3+F3))
 
Upvote 0
Solution
The solution in G3 was exactly what I was looking for, thank you!!!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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