I used to be pretty proficient but after almost 20 years of inactivity, the brain just isn't remembering.
So, building a database to log inspections of my bee hives. Have a table, Log_Apiary to define the Apiaries (An apiary is a yard containing one or several hive colonies). Another table Log_Hive to define the actual hives.
Log ApiaryLog Hive
In Log_Hive, the Apiary field is selected through a dropdown lookup pulling from Log_Apiary. So far so good.
Now, I go to another table, Log_Inspection where I will start recording each individual hive inspection. This includes date, time, weather and such and then I select the hive by first selecting the Apiary (same dropdown lookup used in Log_Hive) and then I want to select the Hive using a dropdown lookup but I want to only see the hives that are linked to the previously selected Apiary. and for the life of me, I cannot remember what to do to accomplish this.
Log_Inspection
AS you can see, the dropdown lists all the hives but I want to only list the hives specific to the already selected Apiary. If no Apiary is selected, it would likely show no Hive options. (null).
Tried building an embedded query and also a separate query but I just don't remember how to set this up. Seems like it should be super simple.
Note the actual field names do not contain spaces, I use underscores in my naming convention.
Thanks for any input and unfortunately, this probably won't be the last of my re-learning questions.