Hey everyone -
I've taken multiple stabs at this problem over the past week, but still can't seem to figure it out.
Within my database, I have a field for the name of the drainage basin a BMP (bmpDrainageBasin) uses, as well as the name of the HUC used by the drainage basin (bmpHUC). Because the HUC codes are very cryptic, I am trying to create a situation where selecting the drainage basin also automatically chooses the proper bmpHUC value. I currently have both bmpHUC and bmpDrainageBasin within the same table, but I also tried creating two different tables and linking them with Primary/Foreign Keys - without any luck. I'd greatly appreciate any help you guys and gals could provide.
Here is the layout
Thanks in advance! If anyone solves this, you deserve a star!
I've taken multiple stabs at this problem over the past week, but still can't seem to figure it out.
Within my database, I have a field for the name of the drainage basin a BMP (bmpDrainageBasin) uses, as well as the name of the HUC used by the drainage basin (bmpHUC). Because the HUC codes are very cryptic, I am trying to create a situation where selecting the drainage basin also automatically chooses the proper bmpHUC value. I currently have both bmpHUC and bmpDrainageBasin within the same table, but I also tried creating two different tables and linking them with Primary/Foreign Keys - without any luck. I'd greatly appreciate any help you guys and gals could provide.
Here is the layout
Code:
++ tblBMP ++
AutoIDBMPs (PK)
bmpType
AutoIDProperty (FK to another table)
bmpDrainageBasin
bmpAcreage
bmpRiserDiameter
bmpTopRiserElement
bmpDewateringElement
bmpBarrelDiameter
bmpESL
bmpESW
bmpWSD
bmpNotes
bmpHUC
Thanks in advance! If anyone solves this, you deserve a star!