The project: I am trying to create a databases that captures feedback from surveys. Most of the feedback is numerical while other is txt (I am aware of the 255 txt limit and the problems that memo fields have). There are about 50 surveys, some repeat the same questions, some do not.
The problem: As you might have guessed, some of the questions asked in this survey are longer than the 64 allowed characters for Field Names. So, my solution is to have two tables, Question_Table has all of the Questions asked (with their associated Question_ID) and another table (ex: TableA) where the values ("feedback") is stored. The field names in TableA correspond to the Question_ID, however I do not know how to link the field names of TableA to the row values of Question_ID in the Question_Table.
My solutions: So far, the only proposed solution that I can think of is writing some VBA code using arrays that would link the two together. I know that I couldn't be the only one who has had this issue of how to work around long field names but my searches have not resulted in anything. What solutions do you propose? Would it be a query, code? Using arrays or another method?
Thanks in advance!