In my main record table (tblA), there is an element which can take on a list of values (from A to G) with max char limits of about 20bytes
(a) I can put it as field in TEXT then construct a combobox lookup of this list
(b) I can lump all the choices in choiceID in its own table (tblB) and set it to point back to a different field in tblA that contains the choiceID of type number. Hence I can link B to A by a 1-to-many relationship.
What are the deciding factor(s) that would make me take one strategy over the other?