I am trying to make radio buttons control the outcome of a formula, based on the choice of the button and the contents of a dropdown. The first half of the formula works, but the second half doesn't work, I end up with a "false". I am looking to have two radio buttons determine the use of specific multipliers.
Both buttons are referencing cell J30, all equations are referencing cell J33 which uses a dropdown list. J33 is a number of months ranging from 0 months (purchase) to 63 months. (If J33 = 36 months and J30=1 use 0.0307) but (if J33=36 and J30=2 use 0.034), etc....
So I want it to be... if J30 is 1 use the first group of equations (equations in bold), if J30 is 2 use equations in group B (equations italicized).
Group A (in bold) works fine, but group B (italicized) does not.
Here is the formula I am using... any ideas what I'm missing? What am I doing wrong??
=IF($J$30=1,IF(J33="purchase",0,IF(J33="12",0.0778,IF(J33="24",0.0424,IF(J33="36",0.0307,IF(J33="39",0.0283,IF(J33="48",0.0247,IF(J33="60",0.0206,IF(J33="63",0.02,**IF($J$30=2,IF(J33="purchase",0,IF(J33="12",0.00908,IF(J33="24",0.0488,IF(J33="36",0.034,IF(J33="39",0.0319,IF(J33="48",0.0271,IF(J33="60",0.0229,IF(J33="63",0.0221,0))))))))))))))))))
I have tried separating the two formulas, closing the first,("=" the second, and a plethora of other variations... I'm stumped.
Both buttons are referencing cell J30, all equations are referencing cell J33 which uses a dropdown list. J33 is a number of months ranging from 0 months (purchase) to 63 months. (If J33 = 36 months and J30=1 use 0.0307) but (if J33=36 and J30=2 use 0.034), etc....
So I want it to be... if J30 is 1 use the first group of equations (equations in bold), if J30 is 2 use equations in group B (equations italicized).
Group A (in bold) works fine, but group B (italicized) does not.
Here is the formula I am using... any ideas what I'm missing? What am I doing wrong??
=IF($J$30=1,IF(J33="purchase",0,IF(J33="12",0.0778,IF(J33="24",0.0424,IF(J33="36",0.0307,IF(J33="39",0.0283,IF(J33="48",0.0247,IF(J33="60",0.0206,IF(J33="63",0.02,**IF($J$30=2,IF(J33="purchase",0,IF(J33="12",0.00908,IF(J33="24",0.0488,IF(J33="36",0.034,IF(J33="39",0.0319,IF(J33="48",0.0271,IF(J33="60",0.0229,IF(J33="63",0.0221,0))))))))))))))))))
I have tried separating the two formulas, closing the first,("=" the second, and a plethora of other variations... I'm stumped.