Forum Discussion
Dalia_Dargyte
Mar 26, 2020Copper Contributor
Salary cut calculation
Hi, how do I calculate salary cut by 30 % only for the salary value which for example is USD 210.000? The cut is to be calculated only for amount equal or exceeding the USD 200.000 value, not for the...
- Mar 27, 2020
Dalia,
It's better to create helper range with parameters
as in the right site of this screenshot. Actually it could be at any place within workbook. Formula in B1 could be
=SUMPRODUCT((($F$2:$F$6-$E$2:$E$6)*($F$2:$F$6-A1<0)+(A1>$E$2:$E$6)*(A1<$F$2:$F$6)*(A1-$E$2:$E$6))*$G$2:$G$6)
drag it down.
Pacino2210
Jun 05, 2024Copper Contributor
To calculate a 30% salary cut on amounts exceeding USD 200,000 for a USD 210,000 salary, subtract 200,000 from 210,000 to get 10,000. Then, apply the 30% cut to 10,000, which is 3,000. Subtract this from 210,000, resulting in a final salary of 207,000. For more complex calculations, consider using a UIF calculator.