Forum Discussion
Asghar_Abbas
Apr 08, 2020Copper Contributor
Conditional Formulas
If H2 would exceed to 10,000 the sum of H coloum then multiply by *0.25 otherwise should multiply by 0.45, I need answer in J2. Please advise the formula
- Apr 09, 2020
Perhaps the attached workbook solves your question. It holds an "all in one" solution, but it's is far from elegant.
=IF(SUM($H$1:H2)>10000,MIN(SUM($H$1:H2)-10000,H2),0)*0.25+(H2-IF(SUM($H$1:H2)>10000,MIN(SUM($H$1:H2)-10000,H2),0))*0.45
It works, but hard to read and understand without dissecting in its individual elements. That's why I also included a step-by-step approach with some helper columns.
Abiola1
Apr 08, 2020MVP
Hello,
You asked similar question 4 hours ago..
https://techcommunity.microsoft.com/t5/excel/conditional-formulas/m-p/1291714#M58074
You asked similar question 4 hours ago..
https://techcommunity.microsoft.com/t5/excel/conditional-formulas/m-p/1291714#M58074