I want to create a very simple, maintable decision tree program in Excel
I have a list of questions, with x possible answers per question.
I have created a simple list of the questions, with a drop-down for the answers.
Now I need an easy way to evaluate the answers that are provided which produce the result for that answer set.
So far...my quick & dirty idea is...create a set of possible answer sets...compare each answer set to the actual response...and then identify the single answer set that macthes the response. But since my sets of questions can be large, and the number of possible
answers per question large...this quickly becomes crazy to maintain. 10 questions with 4 responses per question creates....4^10=1,048,576 sets...well , we cannot even manage this in Excel.
And I know Excel can do something smarter, better.
The Q&A table is as basically follows...a simple 6 columns by 8 rows table..column 1 is the question...columns 2 thru 8 contain the posisble answers, where each row can have anywhere between 2 and 7 possible responses. I will have a a bunch of differnt sizes,
but that's the basic concept.
My Excel comfort zone includes Vlookup, Hlookup, IF. Which is what I would normally try to use in most cases. I really need something simple...not elegant...so I can easily maintain as this prototype evolves. I am happy to learn new stuff but I prefer formauls
and not Vbasic.