Last active
January 29, 2019 03:08
-
-
Save 0xbadjuju/c893e5168e28a35082fa20b553b57447 to your computer and use it in GitHub Desktop.
Excel Formulas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Joint | |
=IF(D15<19050,D15*0.1, | |
IF(D15<77400,1905+(0.12*(D15-19050)), | |
IF(D15<165000,8907+(0.22*(D15-77400)), | |
IF(D15<315000,28179+(0.24*(D15-165000)), | |
IF(D15<400000,64179+(0.32*(D15-315000)), | |
IF(D15<600000,91379+(0.35*(D15-400000)), | |
161379+(0.37*(D15-600000)) | |
)))))) | |
Head of Household | |
=IF(D15<13600,D15*0.1, | |
IF(D15<51800,1360+(0.12*(D15-13600)), | |
IF(D15<82500,5944+(0.22*(D15-51800)), | |
IF(D15<157500,12698+(0.24*(D15-82500)), | |
IF(D15<200000,30698+(0.32*(D15-157500)), | |
IF(D15<500000,44298+(0.35*(D15-200000)), | |
149298+(0.37*(D15-500000)) | |
)))))) | |
Single | |
=IF(D15<9525,D23*0.1, | |
IF(D15<38700,952.20+(0.12*(D15-9525)), | |
IF(D15<82500,4453.50+(0.22*(D15-38700)), | |
IF(D15<157500,14089.50+(0.24*(D15-82500)), | |
IF(D15<200000,32089.50+(0.32*(D15-157500)), | |
IF(D15<500000,45689.50+(0.35*(D15-200000)), | |
150689.50+(0.37*(D15-500000)), | |
))))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment