I'm trying to improve a prospect check spreadsheet by adding DB/DC Gateway test check. But my if statement multiple conditions is not working for me. please help.
If the plan has only HCEs or NHCEs - "NO REQUIRED GT" as in the first if clause
If the plan is only DC then GT can be satisfied if all eligible ee receive at least 5% as in the 2nd if clause
Otherwise, it will perform the GT check for DB/DC combo plan (given in the below table) as in the last five if clauses. HCE Gateway limit 1/3 to 5% 15-25% 6% 25-30% 7% 30-35% 7.50% >35% =IF(OR(A1=0,B1=0,C1=0),"NO REQUIRED GT",
IF(AND('Table'!A2=2,U22>=0.05),"GT PASSES",
IF(AND(U22>=0.075,'Table'!A2=1),"GT PASSES",
IF(AND(T21>30,T21<=35,U22>=0.07, 'Table'!A2=1),"GT PASSES",
IF(AND(T21>25,T21<=30,U22>=0.06, 'Table'!A2=1),"GT PASSES",
IF(AND(T21>15,T21<=25,U22>=0.05, 'Table'!A2=1),"GT PASSES",
IF(AND(T21<15,U22>=T21/3),"GT PASSES",
"GT FAILED")))))))