I need to have a combo box that will display a list that is based on what the user selects in a previous field on the form. I have the list in a table. For example if the user selects an R in the previous field, the next combo box will be accupied with only records that the RV_class in the table that contains the records that I want to display is = to the field on the form.
SELECT RV_Codes.RV_ID, RV_Codes.RV_Code, RV_Codes.Class
FROM RV_Codes
WHERE (((RV_Codes.Class)=[Forms]![DataEntry]![Equip or Reag?]));
This should be easy but the solution is really avoiding me.
Thanks in advance for your help.
SELECT RV_Codes.RV_ID, RV_Codes.RV_Code, RV_Codes.Class
FROM RV_Codes
WHERE (((RV_Codes.Class)=[Forms]![DataEntry]![Equip or Reag?]));
This should be easy but the solution is really avoiding me.
Thanks in advance for your help.