I'm trying to set-up and 'IF' formula to calculate a tax based on a IRS corporate tax schedule that must incle all of the applicable tax rates
To do so, I've built the following 'IF' statement but I can't get it to calculate the tax properly.
=IF(0<210000<=50000,(((210000-0)*0.15)+0),IF(50000<210000>75000,(((210000-50000)*0.25)+7500),IF(75000<210000>100000,(((210000-75000)*0.34)+13750),IF(100000<210000>335000,(((210000-100000)*0.39)+22250),IF(335000<210000>10000000,(((210000-335000)*0.34)+113900),IF(10000000<210000>15000000,(((210000-10000000)*0.35)+3400000),IF(15000000<210000>18333333,(((210000-15000000)*0.38)+5150000))))))))
The taxable income is $210,000, and the right answer is $65,150 but the 'IF' statement above is giving me $47,500 as the answer. What am I doing wrong? How do I separate the seven variable 'IF' statements so that they have no dependence on one another? If I just run the one 'IF' statement that directly applies to the $210,000 of taxable income ... "IF(100000<210000>335000,(((210000-100000)*0.39)+22250)" - the answer comes out fine.
To do so, I've built the following 'IF' statement but I can't get it to calculate the tax properly.
=IF(0<210000<=50000,(((210000-0)*0.15)+0),IF(50000<210000>75000,(((210000-50000)*0.25)+7500),IF(75000<210000>100000,(((210000-75000)*0.34)+13750),IF(100000<210000>335000,(((210000-100000)*0.39)+22250),IF(335000<210000>10000000,(((210000-335000)*0.34)+113900),IF(10000000<210000>15000000,(((210000-10000000)*0.35)+3400000),IF(15000000<210000>18333333,(((210000-15000000)*0.38)+5150000))))))))
The taxable income is $210,000, and the right answer is $65,150 but the 'IF' statement above is giving me $47,500 as the answer. What am I doing wrong? How do I separate the seven variable 'IF' statements so that they have no dependence on one another? If I just run the one 'IF' statement that directly applies to the $210,000 of taxable income ... "IF(100000<210000>335000,(((210000-100000)*0.39)+22250)" - the answer comes out fine.