Hello Everyone,
I have a database used in a vending machine business. If I'm told about a location's attributes I put the information in notes field associated with the property. Unfortunately this is not a very useful way of doing things. I cannot easily find data on the 250+ different properties when the owner asks me for things because I have no "list" of attributes. So when the owner says ."We are going to try a new product in all the apartments that have a lot of kids..." I have to wade through the property list and remember/guess or check the notes to see if the apartment caters to families. I have decided to create a property attribute table to track the data so it can be easily sorted.
Table # 1 (currently only has 12 attributes)
tblPropertyTypeAttributes
AttributeTypeID (Auto Number and PK)
AttributeName (A Level, B Level, Employee Only Lounge Access, etc.._)
I then created a table that will have one-to-many relationship's with the attributes, as each property will have at least one, but most likely 3+ attributes.
tblPropertyAttribues
PropertyID (FK tblProperty)
AttributeTypeID (FK tblPropertyTypeAttributes)
Here's where I need help, I need help creating a functional form.
I know an option box or check box form is very end-user friendly, but every time the list changes I'll have to go in and modify the form.
I would rather use a combo box or list, since those can change if the attribute type table changes. But I have no idea how to make a combo box or a list as user friendly as a check box form.
I've searched the forums but I think my brain is so fried trying to figure this out I'm not using the right key words because for the life of me I cannot figure out a best practice to build this form. Any guidance is greatly appreciated. Thank you.
I have a database used in a vending machine business. If I'm told about a location's attributes I put the information in notes field associated with the property. Unfortunately this is not a very useful way of doing things. I cannot easily find data on the 250+ different properties when the owner asks me for things because I have no "list" of attributes. So when the owner says ."We are going to try a new product in all the apartments that have a lot of kids..." I have to wade through the property list and remember/guess or check the notes to see if the apartment caters to families. I have decided to create a property attribute table to track the data so it can be easily sorted.
Table # 1 (currently only has 12 attributes)
tblPropertyTypeAttributes
AttributeTypeID (Auto Number and PK)
AttributeName (A Level, B Level, Employee Only Lounge Access, etc.._)
I then created a table that will have one-to-many relationship's with the attributes, as each property will have at least one, but most likely 3+ attributes.
tblPropertyAttribues
PropertyID (FK tblProperty)
AttributeTypeID (FK tblPropertyTypeAttributes)
Here's where I need help, I need help creating a functional form.
I know an option box or check box form is very end-user friendly, but every time the list changes I'll have to go in and modify the form.
I would rather use a combo box or list, since those can change if the attribute type table changes. But I have no idea how to make a combo box or a list as user friendly as a check box form.
I've searched the forums but I think my brain is so fried trying to figure this out I'm not using the right key words because for the life of me I cannot figure out a best practice to build this form. Any guidance is greatly appreciated. Thank you.