Access 2000.
I have five tables: Project(80), Offices(30), PerformanceIndicators(20), Scales(5), Data.
Each PerformanceIndicator is assigned one of the 5 different scales.
The Data file is used to match projects with offices with indicators and to assign a value to the indicator.
All fields in the Data file are lookup fields with combo boxes to facilitate data entry:
Project ID shows the project names, saves the selected project ID
Office ID shows the office names, saves the selected office ID
Indicator ID shows the indicator names, saves the selected indicator ID
Since the Indicator is already known by the time the user gets to the Value field, I would like to have the proper ScaleValues assigned to the combo box to facilitate selection.
Here is my logic:
1) I remember the IndicatorID after is has been selected
2) Find the corresponding record in the Indicator file
3) Retrieve the assigned ScaleID
4) Use a query to display (combo box) the corresponding Scale values from the Scale file
5) Save the value in the Value field
Does this make sense?
How do I do that?