Need a little direction on this. I have three tables as such:
tblState
StateID [PK]
StateAbb
StateName
Select (Y or N)
tblCounty
CountyID [PK]
StateID [FK]
CountyCode
CountyName (Y or N)
Select (Y or N)
tblCrop
CropID [PK]
CountyID [FK]
CropCode
CropName
There are over 3000 counties in the US and each county has it's own crops, which could or could not match another county. I placed a Y or N field on state and county tables so that users could select where they primarily do business, and my combo boxes only list what has been filtered - this way users do not need to see anything but what they want.
How do I handle a Not In List if a user wants to add a new county or state for that matter, where they would have to place a checkmark in that box? Or, should I just drop the whole pre-selection idea?
tblState
StateID [PK]
StateAbb
StateName
Select (Y or N)
tblCounty
CountyID [PK]
StateID [FK]
CountyCode
CountyName (Y or N)
Select (Y or N)
tblCrop
CropID [PK]
CountyID [FK]
CropCode
CropName
There are over 3000 counties in the US and each county has it's own crops, which could or could not match another county. I placed a Y or N field on state and county tables so that users could select where they primarily do business, and my combo boxes only list what has been filtered - this way users do not need to see anything but what they want.
How do I handle a Not In List if a user wants to add a new county or state for that matter, where they would have to place a checkmark in that box? Or, should I just drop the whole pre-selection idea?