Combining Formulas

Alex501

Board Regular
Joined
Dec 11, 2015
Messages
54
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;

ABCDEF
1TotalAdditional FeeFee %Old ClientOld FeeNew Fee
22000.0020.0020Yes
31500.0015.0020Yes
4500.005.0020Yes
5150.0015.0020
660.0010.0020

<tbody>
</tbody>

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

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
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,214,915
Messages
6,122,217
Members
449,074
Latest member
cancansova

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