Combining Formulas

Alex501

Board Regular
Joined
Dec 11, 2015
Messages
59
Office Version
  1. 365
  2. 2019
Hi

We have originally added fees to accounts based on a percentage of the original balance. We have a new client who wants their fees capped to specific amounts. I've done the formula for the new cliwnt but I'm struggling to add the equation to the original equation. The data looks like this;

[TABLE="width: 547"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]Total[/TD]
[TD]Additional Fee[/TD]
[TD]Fee %[/TD]
[TD]Old Client[/TD]
[TD]Old Fee[/TD]
[TD]New Fee[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]2000.00[/TD]
[TD]20.00[/TD]
[TD]20[/TD]
[TD]Yes[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1500.00[/TD]
[TD]15.00[/TD]
[TD]20[/TD]
[TD]Yes[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]500.00[/TD]
[TD]5.00[/TD]
[TD]20[/TD]
[TD]Yes[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]150.00[/TD]
[TD]15.00[/TD]
[TD]20[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]60.00[/TD]
[TD]10.00[/TD]
[TD]20[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

The equation I have for the old clients is (E2);

ROUND((((A2+B2)/100)*C2),2)


And the formula for the new clent (F2);


IF(A2<100,10,IF(A2<250,25,IF(A2<500,50,IF(A2<1000,75,IF(A2<5000,75,IF(A2<10000,100))))))


How do I combine the equation bases on whether or not column 'D' has 'Yes' in it? I've got as far as;


ROUND(IF(D2="Yes",((A2+B2)/100)*C2)),2)


Any help is much appreciated.


Thanks


Alex
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Try

Code:
=IF(D2="Yes",ROUND((((A2+B2)/100)*C2),2),IF(A2<100,10,IF(A2<250,25,IF(A2<500,50,IF(A2<1000,75,IF(A2<5000,75,IF(A2<10000,100)))))))

Does that work for you? :)
 
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,198
Members
452,616
Latest member
intern444

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