If you were thinking of using a nested IF statement, this might change your mind. This is equivalent to K m's CHOOSE formula. As you can see, the nested IF is much longer and complicated...and ends up with the same answer.
Formula:
=IF(E10<=50000,E10*10%,IF(E10<=100000,(E10-50000)*15%+(50000*10%),IF(E10<=200000,(E10-100000)*20%+(50000*15%+50000*10%),IF(E10<=300000,(E10-200000)*30%+(100000*20%+50000*15%+50000*10%),IF(E10<=400000,(E10-300000)*35%+(100000*30%+100000*20%+50000*15%+50000*10%),(E10-400000)*40%+(E10-300000)*35%+(100000*30%+100000*20%+50000*15%+50000*10%))))))
Bookmarks