I've been able to get a selection from the 'Division' combo box (cboDiv) to change the options available in the subsequent 'Initiative' combo box (cboInit). The problem is that the initiative box doesn't keep updating everytime I choose a different division...it only changes once I close out of the form and open it up again.
I added the procedure: cboInit.Requery in the After_Update event of cboDiv, but that didn't work.
Here is the row source for cboDiv:
SELECT [qryDiv].[Division] FROM qryDiv;
Here is the row source for cboInit:
SELECT [tblInit].[Initiative] FROM tblInit WHERE ((([tblInit].[Division])=[forms]![frmActual]![cboDiv]));
Just as a side note...is there a better way to accomplish this combo box task?
Thanks,
Av
I added the procedure: cboInit.Requery in the After_Update event of cboDiv, but that didn't work.
Here is the row source for cboDiv:
SELECT [qryDiv].[Division] FROM qryDiv;
Here is the row source for cboInit:
SELECT [tblInit].[Initiative] FROM tblInit WHERE ((([tblInit].[Division])=[forms]![frmActual]![cboDiv]));
Just as a side note...is there a better way to accomplish this combo box task?
Thanks,
Av