I would like to open a form to display the contents of a table. The table is like this
PK = DivisionID
DivisionID DivisionName
1000 General Conditions
2000 Site Work
3000 Concrete
I would like to be able to display the 3 records individually so they can be selected by a check box (instead of having them all in a drop down combo box) or not if they are not being used. So I would like the form to look like this
Select a Division
General Conditions [] check box
Site Work [] check box
Concrete [] check box
The Divisions selected will them be put into another table, relating to Job Information. Is this possible or can it not be done from the same table? Do I have to create a table for each individual Division Name?
PK = DivisionID
DivisionID DivisionName
1000 General Conditions
2000 Site Work
3000 Concrete
I would like to be able to display the 3 records individually so they can be selected by a check box (instead of having them all in a drop down combo box) or not if they are not being used. So I would like the form to look like this
Select a Division
General Conditions [] check box
Site Work [] check box
Concrete [] check box
The Divisions selected will them be put into another table, relating to Job Information. Is this possible or can it not be done from the same table? Do I have to create a table for each individual Division Name?