I have 2 tables (lots_table and sublots_table) that are related through a primary and foreign key respectively. Both combo boxes are set to single selection. The 1st combo box's (cmbLots) Items property is "lots_table". The DisplayFields property of the 1st combo box (cmbLots) is a text field in the lots_table.
The 2nd combo box's Items property is:
Filter(sublots_table, lots_table_fk.Id = cmbLots.Selected.ID)
The 2nd combo box's (cmbSublots) DisplayFields property is a text field in the sublots_table.
Currently there are no errors in the code and combo box 2 (cmbSublots) does display the text field referenced. However, combo box 2 (cmbSublots) does not filter based on the selection in combo box 1 (cmbLots). I need this filter to work.
Please help! Thanks