Understand Access has multivalue fields but its causing me some issues when implementing other features such as audit trails. Besides it is not a norm in database administration? Hence, I'm trying to do it the "right way" by creating separate tables. The following is an example of say recording the type of fruits my employees like.
Fruits Table:
NUM...FruitPreference
1...Apple
2...Pear
3...Orange
4...Apple Pear
5...Apple Orange
6...Pear Orange
Employee Table:
Name...NUM
John...2
Paul...4
Mary...6
I created my form and naturally I do not want the user selection to be based on NUM nor the entire list of fruit preference (imagine if there are more combinations and everything must be listed). Ideally, it should just be Apple, Pear, Orange and the respective number returned to the NUM column in my Employee Table depending on which combination they choose.
Is this possible?
Thanks in advance.