progressively sum cells and multiply by various amounts

tHE fLY

New Member
Joined
Jul 8, 2014
Messages
31
hi everyone,

I have 2 columns difference in amounts and PAID AMOUNTS

I want to progressively sum each cell in a column and when the total(s) exceed various amounts, I want to multiply by various %

i.e.

when difference is less than 50,000 x by .20 more than 50,000, multiply the difference in the corresponding cell by .35 more than 100,000 multiply cell by .40.. and so on

example

Column A Column B amounts paid--- difference amounts x certain %
difference

3000--- x .20
10000 x .20
15000 x .20
2500 --- total here is 50,500 multiple 2500 x .35

25000 -- x .35
20,000 x .35
10,000 -- total here is 105,500 multiply x .40


any help will be appreciated
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
=if(sum($a$1:$a1)>100000,$a1*0.4,if(and(sum($a$1:$a1)<100000,sum($a$1:$a1))>50000,$a1*0.35,$a1*0.2))

Enter that formula in a new column and drag it down.
 
Upvote 0

Forum statistics

Threads
1,221,826
Messages
6,162,192
Members
451,752
Latest member
majbizzaki

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