Great!
So if you're willing to structure your lookup table (on a sheet named "Answers") a bit like this:
Col A ; Col B ; Col C ; Col D ; Col E
Ans 1 ; Ans 2 ; Ans 3 ; Concat ; Result
yes ; yes ; yes ; yesyesyes ; AT
yes ; yes ; no ; yesyesno ; AT
yes ; no ; na ; yesnona ; IC
etc.
In Cell D2 (and copied down) you can use the formula =CONCATENATE(A2,B2,C2)
You may need to sort your lookup table by column D to allow efficient use of the VLOOKUP formula.
Once the lookup table is built, just use columns D and E as the source for your VLOOKUP formula like this:
=VLOOKUP(CONCATENATE(A1,B1,C1),Answers!$D$2:$E$29,2,FALSE)
HTH
Bookmarks