P
plubbr06
Problem Setup:
I have a Wildflower database that I have created, with each wildflower
having a unique ID (as well as unique common and latin name). Each
wildflower belongs to a family, which I want to be able to select based on
either the common or latin family name. Families names are stored in a
different table with a unique ID for each family.
Question:
How do I add both the common and latin family name to the wildflower record
based on the selection of either one (which would automatically select the
other)? In Excel, I would just write a formula for the cell or column
(field) which would sort through and find the corresponding Family ID and
paste the associated family names to the other table. In C++, it would be
even easier, using a loop until the value of the Family ID from the
wildflower record matched the value of the Family ID from the Family table,
then assigning the associated family named to the wildflower record.
It seems like it should be fairly easy, but I have yet to find a way that
works. Any help (preferably detailed, not just "use a query" or something)
would be very much appreciated.
I have a Wildflower database that I have created, with each wildflower
having a unique ID (as well as unique common and latin name). Each
wildflower belongs to a family, which I want to be able to select based on
either the common or latin family name. Families names are stored in a
different table with a unique ID for each family.
Question:
How do I add both the common and latin family name to the wildflower record
based on the selection of either one (which would automatically select the
other)? In Excel, I would just write a formula for the cell or column
(field) which would sort through and find the corresponding Family ID and
paste the associated family names to the other table. In C++, it would be
even easier, using a loop until the value of the Family ID from the
wildflower record matched the value of the Family ID from the Family table,
then assigning the associated family named to the wildflower record.
It seems like it should be fairly easy, but I have yet to find a way that
works. Any help (preferably detailed, not just "use a query" or something)
would be very much appreciated.