Forum Discussion
Lindo15
Dec 06, 2021Copper Contributor
Excel formula
Hello, I am seeking help to create a formula that will populate a percentage of an income based on where it falls within the federal poverty level. For example if the income in cell A1 equals 38640...
- Dec 06, 2021
=IF(A1>=38640,A1*0.1,IF(A1>25761,A1*0.07,IF(A1>12881,A1*0.05,0)))
Is this what you want to do?
OliverScheurich
Dec 06, 2021Gold Contributor
=IF(A1>=38640,A1*0.1,IF(A1>25761,A1*0.07,IF(A1>12881,A1*0.05,0)))
Is this what you want to do?
Lindo15
Dec 06, 2021Copper Contributor
Thank you, unfortunately my work computer will not allow me open the example you sent but I will test the formula to see if it works