Forum Discussion
ash_m200
Sep 08, 2020Copper Contributor
Excel IF Formula
Hi, I've searched google and the forums for the answer to my query to no avail. What I am trying to do is calculate a % number based on a tiered structure, as follows: Cell B1 will be a percenta...
- Sep 08, 2020
ash_m200 Actually, similar questions have come up here twice the past week, though applied in different contexts.
https://techcommunity.microsoft.com/t5/excel/band-billing/m-p/1632141#M73901
Attached is the same type of solution that I provided then. I've adapted it to your specific situation. I trust you can apply the method demonstrated into your own file. If not, come back here.
clovisdaniel
Sep 08, 2020Copper Contributor
In cell B1:
=IF(A1>E4;F5;IF(A1>E3;F4;IF(A1>E2;F3;F2)))
If you cannot use another cells like my picture, then replace:
E4 to 500
F5 to 0,20%
E3 to 400
F4 to 0,10%
E2 to 100
F3 to 0,05%
F2 to 0,02%
I hope this could help you.
Bye.