stewie1234
New Member
- Joined
- Dec 28, 2015
- Messages
- 8
I have spent literally over 4 hours trying to figure this out. Please, if you can help. SO, my boss wants me to have in a cell if someone makes less than or equal to 300000 then times another cell by 20% but at minimum the answer must be 25000 and in the same cell, if the person makes more than 300000 then the person needs to be taxed at 25% in a different cell but must show a minimum of 72000. I have =IF(D1<=300000,D11*20%,D11*0.25) this in one cell then below it, I have =IF(D1<=300000,MIN(25000,D11*20%),IF(D1>300000,MIN(72000,D11*25%),0)) but its skewed because the answer to their net worth can be negative or positive. Is there something I'm not thinking of? PLEASE help me.