OK. So I am setting up a business which sells 7 different plans based on affordability and circumstances.
I wish to input customer information into an Excel spreadsheet and the spreadsheet to tell me the Plan.
However basic IF equations are not working.
So for eg. If Customer has credit rating of more than 550, 0 arrears, wants cover of more than £20000 but equal to £25000 or less and has 2 or fewer insurance policies then = Plan 7.
=IF(AND(A1>550,B1>0,C1>20000,C1<=25000,D1<=2),"7")
(this bit is fine as it tells me "PLAN 7").
However.
If Customer has credit rating of less than 550 but more than 500, 0 arrears, wants cover of more than £15000 but £20000 or less and has 2 or fewer insurance policies then = Plan 6.
This equation just returns, "FALSE" if I put those matching variables in the appropriate cells: as in:
=IF(AND(A1>550,B1>0,C1>20000,C1<=25000,D1<=2)"7",IF(AND(A1>500,A1<550,B1>0,C1>15000,C1<=20000,D1<=2),"6"))
= FALSE
(if information in spreadsheet should return PLAN 6) but continues to give me PLAN 7 if information in spreadsheet shoukd return PLAN 7.
I obviously wish to continue this with the 5 other parameters, until "PLAN 1".
What am I doing wrong?
Thanks so much. At wits end.