Thanks alot, I will try that. I am sure it will work.
Also, I cannot ilnk to combo box in a form. I wonder if I made a mistake in my SQL statements.
My fisrt cbo is Portfolio and the 2nd one is Deal.
If I chose a portfolio I want to have only the associated in my deal cbo.
I already did taht for 2 cbos and it worked. But not this time.
First CBO code is:
SELECT tblportfolio.Portfolio_ID, tblportfolio.Porfolio FROM tblportfolio ORDER BY [Porfolio];
2nd CBO code is:
SELECT tblDEALS.Deal_ID, tblDEALS.Borrower, tblDEALS.Portfolio FROM tblDEALS WHERE (((tblDEALS.Portfolio)=Forms!frmLookUpByBorrowers! cbo_InterestByPortfolios)) ORDER BY [Borrower];
and the VBA that refresh:
Private Sub cboInterestByPortfolios_AfterUpdate()
cboInterestByBorrowers.Requery
End Sub
My 2 boxes are unbound.
Can you spot the issue?