I've searched a number of posts looking for an answer and I can't seem to find one that quite explains a solution. I feel like this should be relatively simple:
I have a wedding database with a table which lists meal options (tbl_Meal_Options). For instance it has 1 column with 4 values: Meat, Fish, Chicken, Vegetarian.
A second table contains all the invitations that were sent out. Because there can be up to 4 guests on an invitation, each invite row has 4 meal columns: "Meal_1", "Meal_2", "Meal_3", and "Meal_4". The cells in those four columns are linked to the Meal_Options table. So as invites are received, the appropriate option is selected in Meal_1/2/3/4 as a dropdown linked to the Meal_Options table..
I would like to be able to run a query which shows the 4 items in the Meal_Options table and then tallies the number of times each item is selected among the Meal_1-4 columns.
Ultimately, I'm looking for something that looks like the following: Chicken 57 Fish 24 Meat 39 Vegetarian 14
The total number of meals should equal the total number of guests attending.
Any help is VERY much appreciated.